TV Script Generation

In this project, you'll generate your own Simpsons TV scripts using RNNs. You'll be using part of the Simpsons dataset of scripts from 27 seasons. The Neural Network you'll build will generate a new TV script for a scene at Moe's Tavern.

Get the Data

The data is already provided for you. You'll be using a subset of the original dataset. It consists of only the scenes in Moe's Tavern. This doesn't include other versions of the tavern, like "Moe's Cavern", "Flaming Moe's", "Uncle Moe's Family Feed-Bag", etc..

In [1]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import helper

data_dir = './data/simpsons/moes_tavern_lines.txt'
text = helper.load_data(data_dir)
# Ignore notice, since we don't use it for analysing the data
text = text[81:]

Explore the Data

Play around with view_sentence_range to view different parts of the data.

In [2]:
view_sentence_range = (0, 10)

"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import numpy as np

print('Dataset Stats')
print('Roughly the number of unique words: {}'.format(len({word: None for word in text.split()})))
scenes = text.split('\n\n')
print('Number of scenes: {}'.format(len(scenes)))
sentence_count_scene = [scene.count('\n') for scene in scenes]
print('Average number of sentences in each scene: {}'.format(np.average(sentence_count_scene)))

sentences = [sentence for scene in scenes for sentence in scene.split('\n')]
print('Number of lines: {}'.format(len(sentences)))
word_count_sentence = [len(sentence.split()) for sentence in sentences]
print('Average number of words in each line: {}'.format(np.average(word_count_sentence)))

print()
print('The sentences {} to {}:'.format(*view_sentence_range))
print('\n'.join(text.split('\n')[view_sentence_range[0]:view_sentence_range[1]]))
Dataset Stats
Roughly the number of unique words: 11492
Number of scenes: 262
Average number of sentences in each scene: 15.248091603053435
Number of lines: 4257
Average number of words in each line: 11.50434578341555

The sentences 0 to 10:
Moe_Szyslak: (INTO PHONE) Moe's Tavern. Where the elite meet to drink.
Bart_Simpson: Eh, yeah, hello, is Mike there? Last name, Rotch.
Moe_Szyslak: (INTO PHONE) Hold on, I'll check. (TO BARFLIES) Mike Rotch. Mike Rotch. Hey, has anybody seen Mike Rotch, lately?
Moe_Szyslak: (INTO PHONE) Listen you little puke. One of these days I'm gonna catch you, and I'm gonna carve my name on your back with an ice pick.
Moe_Szyslak: What's the matter Homer? You're not your normal effervescent self.
Homer_Simpson: I got my problems, Moe. Give me another one.
Moe_Szyslak: Homer, hey, you should not drink to forget your problems.
Barney_Gumble: Yeah, you should only drink to enhance your social skills.


Implement Preprocessing Functions

The first thing to do to any dataset is preprocessing. Implement the following preprocessing functions below:

  • Lookup Table
  • Tokenize Punctuation

Lookup Table

To create a word embedding, you first need to transform the words to ids. In this function, create two dictionaries:

  • Dictionary to go from the words to an id, we'll call vocab_to_int
  • Dictionary to go from the id to word, we'll call int_to_vocab

Return these dictionaries in the following tuple (vocab_to_int, int_to_vocab)

In [3]:
import numpy as np
import problem_unittests as tests

def create_lookup_tables(text):
    """
    Create lookup tables for vocabulary
    :param text: The text of tv scripts split into words
    :return: A tuple of dicts (vocab_to_int, int_to_vocab)
    """
    # TODO: Implement Function
    vocab = sorted(set(text));
    vocab_to_int = {c: i for i, c in enumerate(vocab)};
    int_to_vocab = dict(enumerate(vocab))
    return vocab_to_int, int_to_vocab


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_create_lookup_tables(create_lookup_tables)
Tests Passed

Tokenize Punctuation

We'll be splitting the script into a word array using spaces as delimiters. However, punctuations like periods and exclamation marks make it hard for the neural network to distinguish between the word "bye" and "bye!".

Implement the function token_lookup to return a dict that will be used to tokenize symbols like "!" into "||Exclamation_Mark||". Create a dictionary for the following symbols where the symbol is the key and value is the token:

  • Period ( . )
  • Comma ( , )
  • Quotation Mark ( " )
  • Semicolon ( ; )
  • Exclamation mark ( ! )
  • Question mark ( ? )
  • Left Parentheses ( ( )
  • Right Parentheses ( ) )
  • Dash ( -- )
  • Return ( \n )

This dictionary will be used to token the symbols and add the delimiter (space) around it. This separates the symbols as it's own word, making it easier for the neural network to predict on the next word. Make sure you don't use a token that could be confused as a word. Instead of using the token "dash", try using something like "||dash||".

In [4]:
def token_lookup():
    """
    Generate a dict to turn punctuation into a token.
    :return: Tokenize dictionary where the key is the punctuation and the value is the token
    """
    # TODO: Implement Function
    lookup_dictionary = {
        ".": "||dot||",
        ",": "||comma||",
        "\"": "||quotationmark||",
        ";": "||semicolon||",
        "!": "||exclamation||",
        "?": "||questionmark||",
        "(": "||leftparenthesis||",
        ")": "||rightparenthesis||",
        "--": "||dash||",
        "\n": "||return||"
    }
    return lookup_dictionary

"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_tokenize(token_lookup)
Tests Passed

Preprocess all the data and save it

Running the code cell below will preprocess all the data and save it to file.

In [5]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
# Preprocess Training, Validation, and Testing Data
helper.preprocess_and_save_data(data_dir, token_lookup, create_lookup_tables)

Check Point

This is your first checkpoint. If you ever decide to come back to this notebook or have to restart the notebook, you can start from here. The preprocessed data has been saved to disk.

In [6]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import helper
import numpy as np
import problem_unittests as tests

int_text, vocab_to_int, int_to_vocab, token_dict = helper.load_preprocess()

Build the Neural Network

You'll build the components necessary to build a RNN by implementing the following functions below:

  • get_inputs
  • get_init_cell
  • get_embed
  • build_rnn
  • build_nn
  • get_batches

Check the Version of TensorFlow and Access to GPU

In [7]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
from distutils.version import LooseVersion
import warnings
import tensorflow as tf

# Check TensorFlow Version
assert LooseVersion(tf.__version__) >= LooseVersion('1.0'), 'Please use TensorFlow version 1.0 or newer'
print('TensorFlow Version: {}'.format(tf.__version__))

# Check for a GPU
if not tf.test.gpu_device_name():
    warnings.warn('No GPU found. Please use a GPU to train your neural network.')
else:
    print('Default GPU Device: {}'.format(tf.test.gpu_device_name()))
TensorFlow Version: 1.2.0
Default GPU Device: /gpu:0

Input

Implement the get_inputs() function to create TF Placeholders for the Neural Network. It should create the following placeholders:

  • Input text placeholder named "input" using the TF Placeholder name parameter.
  • Targets placeholder
  • Learning Rate placeholder

Return the placeholders in the following tuple (Input, Targets, LearningRate)

In [8]:
def get_inputs():
    """
    Create TF Placeholders for input, targets, and learning rate.
    :return: Tuple (input, targets, learning rate)
    """
    # TODO: Implement Function
    inputs = tf.placeholder(tf.int32, [None, None], name='input')
    targets = tf.placeholder(tf.int32, [None, None], name='targets')
    learning_rate = tf.placeholder(tf.float32, name='learning_rate')
    
    return inputs, targets, learning_rate


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_inputs(get_inputs)
Tests Passed

Build RNN Cell and Initialize

Stack one or more BasicLSTMCells in a MultiRNNCell.

  • The Rnn size should be set using rnn_size
  • Initalize Cell State using the MultiRNNCell's zero_state() function
    • Apply the name "initial_state" to the initial state using tf.identity()

Return the cell and initial state in the following tuple (Cell, InitialState)

In [53]:
def get_init_cell(batch_size, rnn_size):
    """
    Create an RNN Cell and initialize it.
    :param batch_size: Size of batches
    :param rnn_size: Size of RNNs
    :return: Tuple (cell, initialize state)
    """
    # TODO: Implement Function
    num_layers = 1
    keep_prob = 0.5
    def build_cell():
        lstm = tf.contrib.rnn.BasicLSTMCell(rnn_size)
        drop = tf.contrib.rnn.DropoutWrapper(lstm, keep_prob)
        return lstm
    
    cell = tf.contrib.rnn.MultiRNNCell([build_cell() for _ in range(num_layers)])
    initial_state = tf.identity(cell.zero_state(batch_size, tf.float32), "initial_state")
    return cell, initial_state


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_init_cell(get_init_cell)
Tests Passed

Word Embedding

Apply embedding to input_data using TensorFlow. Return the embedded sequence.

In [54]:
def get_embed(input_data, vocab_size, embed_dim):
    """
    Create embedding for <input_data>.
    :param input_data: TF placeholder for text input.
    :param vocab_size: Number of words in vocabulary.
    :param embed_dim: Number of embedding dimensions
    :return: Embedded input.
    """
    # TODO: Implement Function
    embedding = tf.Variable(tf.random_uniform([vocab_size, embed_dim], -1, 1))
    return tf.nn.embedding_lookup(embedding, input_data)


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_embed(get_embed)
Tests Passed

Build RNN

You created a RNN Cell in the get_init_cell() function. Time to use the cell to create a RNN.

Return the outputs and final_state state in the following tuple (Outputs, FinalState)

In [55]:
def build_rnn(cell, inputs):
    """
    Create a RNN using a RNN Cell
    :param cell: RNN Cell
    :param inputs: Input text data
    :return: Tuple (Outputs, Final State)
    """
    # TODO: Implement Function
    output, state = tf.nn.dynamic_rnn(cell, inputs, dtype=tf.float32);
    final_state = tf.identity(state, 'final_state')
    return output, final_state


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_build_rnn(build_rnn)
Tests Passed

Build the Neural Network

Apply the functions you implemented above to:

  • Apply embedding to input_data using your get_embed(input_data, vocab_size, embed_dim) function.
  • Build RNN using cell and your build_rnn(cell, inputs) function.
  • Apply a fully connected layer with a linear activation and vocab_size as the number of outputs.

Return the logits and final state in the following tuple (Logits, FinalState)

In [97]:
def build_nn(cell, rnn_size, input_data, vocab_size, embed_dim):
    """
    Build part of the neural network
    :param cell: RNN cell
    :param rnn_size: Size of rnns
    :param input_data: Input data
    :param vocab_size: Vocabulary size
    :param embed_dim: Number of embedding dimensions
    :return: Tuple (Logits, FinalState)
    """
    # TODO: Implement Function
    embeddings = get_embed(input_data, vocab_size, embed_dim)

    outputs, final_state = build_rnn(cell, embeddings)
    logits = tf.contrib.layers.fully_connected(outputs, vocab_size, activation_fn=None)
    return (logits, final_state)


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_build_nn(build_nn)
Tests Passed

Batches

Implement get_batches to create batches of input and targets using int_text. The batches should be a Numpy array with the shape (number of batches, 2, batch size, sequence length). Each batch contains two elements:

  • The first element is a single batch of input with the shape [batch size, sequence length]
  • The second element is a single batch of targets with the shape [batch size, sequence length]

If you can't fill the last batch with enough data, drop the last batch.

For exmple, get_batches([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20], 3, 2) would return a Numpy array of the following:

[
  # First Batch
  [
    # Batch of Input
    [[ 1  2], [ 7  8], [13 14]]
    # Batch of targets
    [[ 2  3], [ 8  9], [14 15]]
  ]

  # Second Batch
  [
    # Batch of Input
    [[ 3  4], [ 9 10], [15 16]]
    # Batch of targets
    [[ 4  5], [10 11], [16 17]]
  ]

  # Third Batch
  [
    # Batch of Input
    [[ 5  6], [11 12], [17 18]]
    # Batch of targets
    [[ 6  7], [12 13], [18  1]]
  ]
]

Notice that the last target value in the last batch is the first input value of the first batch. In this case, 1. This is a common technique used when creating sequence batches, although it is rather unintuitive.

In [98]:
def get_batches(int_text, batch_size, seq_length):
    """
    Return batches of input and target
    :param int_text: Text with the words replaced by their ids
    :param batch_size: The size of batch
    :param seq_length: The length of sequence
    :return: Batches as a Numpy array
    """
    # TODO: Implement Function
    batch_total = batch_size * seq_length
    batch_count = int(len(int_text) / batch_total)
    
    input_list = int_text[: batch_count * batch_total]
    target_list = int_text[1: batch_count * batch_total]
    target_list.append(int_text[0])

    input_data  = np.array(input_list)
    target_data = np.array(target_list)
    
    input_batches  = np.split(input_data.reshape(batch_size, -1), batch_count, 1)
    target_batches = np.split(target_data.reshape(batch_size, -1), batch_count, 1)

    return np.array(list(zip(input_batches, target_batches)))


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_batches(get_batches)
Tests Passed

Neural Network Training

Hyperparameters

Tune the following parameters:

  • Set num_epochs to the number of epochs.
  • Set batch_size to the batch size.
  • Set rnn_size to the size of the RNNs.
  • Set embed_dim to the size of the embedding.
  • Set seq_length to the length of sequence.
  • Set learning_rate to the learning rate.
  • Set show_every_n_batches to the number of batches the neural network should print progress.
In [99]:
# Number of Epochs
num_epochs = 200
# Batch Size
batch_size = 256
# RNN Size
rnn_size = 512
# Embedding Dimension Size
embed_dim = 512
# Sequence Length
seq_length = 64
# Learning Rate
learning_rate = 0.01
# Show stats for every n number of batches
show_every_n_batches = 50

"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
save_dir = './save'

Build the Graph

Build the graph using the neural network you implemented.

In [100]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
from tensorflow.contrib import seq2seq

train_graph = tf.Graph()
with train_graph.as_default():
    vocab_size = len(int_to_vocab)
    input_text, targets, lr = get_inputs()
    input_data_shape = tf.shape(input_text)
    cell, initial_state = get_init_cell(input_data_shape[0], rnn_size)
    logits, final_state = build_nn(cell, rnn_size, input_text, vocab_size, embed_dim)

    # Probabilities for generating words
    probs = tf.nn.softmax(logits, name='probs')

    # Loss function
    cost = seq2seq.sequence_loss(
        logits,
        targets,
        tf.ones([input_data_shape[0], input_data_shape[1]]))

    # Optimizer
    optimizer = tf.train.AdamOptimizer(lr)

    # Gradient Clipping
    gradients = optimizer.compute_gradients(cost)
    capped_gradients = [(tf.clip_by_value(grad, -1., 1.), var) for grad, var in gradients if grad is not None]
    train_op = optimizer.apply_gradients(capped_gradients)

Train

Train the neural network on the preprocessed data. If you have a hard time getting a good loss, check the forums to see if anyone is having the same problem.

In [101]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
batches = get_batches(int_text, batch_size, seq_length)

with tf.Session(graph=train_graph) as sess:
    sess.run(tf.global_variables_initializer())

    for epoch_i in range(num_epochs):
        state = sess.run(initial_state, {input_text: batches[0][0]})

        for batch_i, (x, y) in enumerate(batches):
            feed = {
                input_text: x,
                targets: y,
                initial_state: state,
                lr: learning_rate}
            train_loss, state, _ = sess.run([cost, final_state, train_op], feed)

            # Show every <show_every_n_batches> batches
            if (epoch_i * len(batches) + batch_i) % show_every_n_batches == 0:
                print('Epoch {:>3} Batch {:>4}/{}   train_loss = {:.3f}'.format(
                    epoch_i,
                    batch_i,
                    len(batches),
                    train_loss))

    # Save Model
    saver = tf.train.Saver()
    saver.save(sess, save_dir)
    print('Model Trained and Saved')
Epoch   0 Batch    0/4   train_loss = 8.822
Epoch  12 Batch    2/4   train_loss = 3.640
Epoch  25 Batch    0/4   train_loss = 2.385
Epoch  37 Batch    2/4   train_loss = 1.499
Epoch  50 Batch    0/4   train_loss = 0.933
Epoch  62 Batch    2/4   train_loss = 0.616
Epoch  75 Batch    0/4   train_loss = 0.382
Epoch  87 Batch    2/4   train_loss = 0.206
Epoch 100 Batch    0/4   train_loss = 0.107
Epoch 112 Batch    2/4   train_loss = 0.071
Epoch 125 Batch    0/4   train_loss = 0.052
Epoch 137 Batch    2/4   train_loss = 0.046
Epoch 150 Batch    0/4   train_loss = 0.040
Epoch 162 Batch    2/4   train_loss = 0.040
Epoch 175 Batch    0/4   train_loss = 0.036
Epoch 187 Batch    2/4   train_loss = 0.037
Model Trained and Saved

Save Parameters

Save seq_length and save_dir for generating a new TV script.

In [102]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
# Save parameters for checkpoint
helper.save_params((seq_length, save_dir))

Checkpoint

In [103]:
"""
DON'T MODIFY ANYTHING IN THIS CELL
"""
import tensorflow as tf
import numpy as np
import helper
import problem_unittests as tests

_, vocab_to_int, int_to_vocab, token_dict = helper.load_preprocess()
seq_length, load_dir = helper.load_params()

Implement Generate Functions

Get Tensors

Get tensors from loaded_graph using the function get_tensor_by_name(). Get the tensors using the following names:

  • "input:0"
  • "initial_state:0"
  • "final_state:0"
  • "probs:0"

Return the tensors in the following tuple (InputTensor, InitialStateTensor, FinalStateTensor, ProbsTensor)

In [104]:
def get_tensors(loaded_graph):
    """
    Get input, initial state, final state, and probabilities tensor from <loaded_graph>
    :param loaded_graph: TensorFlow graph loaded from file
    :return: Tuple (InputTensor, InitialStateTensor, FinalStateTensor, ProbsTensor)
    """
    # TODO: Implement Function
    return loaded_graph.get_tensor_by_name('input:0'), loaded_graph.get_tensor_by_name('initial_state:0'), loaded_graph.get_tensor_by_name('final_state:0'), loaded_graph.get_tensor_by_name('probs:0')


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_get_tensors(get_tensors)
Tests Passed

Choose Word

Implement the pick_word() function to select the next word using probabilities.

In [129]:
def pick_word(probabilities, int_to_vocab):
    """
    Pick the next word in the generated text
    :param probabilities: Probabilites of the next word
    :param int_to_vocab: Dictionary of word ids as the keys and words as the values
    :return: String of the predicted word
    """
    # TODO: Implement Function
    choices = np.random.choice(len(int_to_vocab), size=1, p=probabilities)
    choice  = choices[0]
    return int_to_vocab[choice]


"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
tests.test_pick_word(pick_word)
Tests Passed

Generate TV Script

This will generate the TV script for you. Set gen_length to the length of TV script you want to generate.

In [125]:
gen_length = 200
# homer_simpson, moe_szyslak, or Barney_Gumble
prime_word = 'homer_simpson'

"""
DON'T MODIFY ANYTHING IN THIS CELL THAT IS BELOW THIS LINE
"""
loaded_graph = tf.Graph()
with tf.Session(graph=loaded_graph) as sess:
    # Load saved model
    loader = tf.train.import_meta_graph(load_dir + '.meta')
    loader.restore(sess, load_dir)

    # Get Tensors from loaded model
    input_text, initial_state, final_state, probs = get_tensors(loaded_graph)

    # Sentences generation setup
    gen_sentences = [prime_word + ':']
    prev_state = sess.run(initial_state, {input_text: np.array([[1]])})

    # Generate sentences
    for n in range(gen_length):
        # Dynamic Input
        dyn_input = [[vocab_to_int[word] for word in gen_sentences[-seq_length:]]]
        dyn_seq_length = len(dyn_input[0])

        # Get Prediction
        probabilities, prev_state = sess.run(
            [probs, final_state],
            {input_text: dyn_input, initial_state: prev_state})

        pred_word = pick_word(probabilities[0][dyn_seq_length-1].flatten(), int_to_vocab)

        gen_sentences.append(pred_word)
    
    # Remove tokens
    tv_script = ' '.join(gen_sentences)
    for key, token in token_dict.items():
        ending = ' ' if key in ['\n', '(', '"'] else ''
        tv_script = tv_script.replace(' ' + token.lower(), key)
    tv_script = tv_script.replace('\n ', '\n')
    tv_script = tv_script.replace('( ', '(')
        
    print(tv_script)
INFO:tensorflow:Restoring parameters from ./save
1
[  8.12379108e-10   1.10217666e-08   4.19230289e-10 ...,   9.35271055e-06
   2.73906942e-09   2.52228119e-07]
[  8.12379108e-10   1.10217666e-08   4.19230289e-10 ...,   9.35271055e-06
   2.73906942e-09   2.52228119e-07]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6240]
6240
uh
2
[  2.65219948e-13   1.36266649e-11   3.41340259e-15 ...,   2.60258037e-08
   1.44126863e-10   2.47663023e-12]
[  2.65219948e-13   1.36266649e-11   3.41340259e-15 ...,   2.60258037e-08
   1.44126863e-10   2.47663023e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6768]
6768
||comma||
3
[  3.33453221e-09   7.80726456e-11   6.94063730e-12 ...,   7.39702344e-09
   2.90229334e-11   1.33214562e-09]
[  3.33453221e-09   7.80726456e-11   6.94063730e-12 ...,   7.39702344e-09
   2.90229334e-11   1.33214562e-09]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[5783]
5783
sure
4
[  6.60037758e-09   3.94527813e-11   6.18782178e-11 ...,   4.24080149e-08
   5.35712097e-09   2.70977771e-12]
[  6.60037758e-09   3.94527813e-11   6.18782178e-11 ...,   4.24080149e-08
   5.35712097e-09   2.70977771e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6770]
6770
||dot||
5
[  6.90080046e-13   1.40503720e-09   5.36707148e-07 ...,   2.03304069e-07
   7.01164904e-10   9.20500898e-10]
[  6.90080046e-13   1.40503720e-09   5.36707148e-07 ...,   2.03304069e-07
   7.01164904e-10   9.20500898e-10]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6775]
6775
||return||
6
[  9.54882061e-14   8.85665430e-10   2.68312038e-13 ...,   9.24365338e-07
   1.27175756e-10   4.44316892e-12]
[  9.54882061e-14   8.85665430e-10   2.68312038e-13 ...,   9.24365338e-07
   1.27175756e-10   4.44316892e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[3823]
3823
moe_szyslak:
7
[  2.36075690e-11   1.69547913e-08   6.16773924e-11 ...,   5.89492295e-08
   1.63953887e-12   1.01352384e-08]
[  2.36075690e-11   1.69547913e-08   6.16773924e-11 ...,   5.89492295e-08
   1.63953887e-12   1.01352384e-08]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[2542]
2542
great
8
[  2.01680339e-09   1.59312996e-09   1.15528117e-11 ...,   5.13203773e-08
   2.53494022e-06   5.27055677e-10]
[  2.01680339e-09   1.59312996e-09   1.15528117e-11 ...,   5.13203773e-08
   2.53494022e-06   5.27055677e-10]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6770]
6770
||dot||
9
[  4.67856786e-12   1.59138813e-10   8.72203543e-07 ...,   4.05414866e-08
   7.37851447e-11   2.38757625e-10]
[  4.67856786e-12   1.59138813e-10   8.72203543e-07 ...,   4.05414866e-08
   7.37851447e-11   2.38757625e-10]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[205]
205
all
10
[  3.24616991e-08   4.85127272e-09   2.73934514e-10 ...,   2.82575421e-08
   4.45382259e-10   4.71239991e-10]
[  3.24616991e-08   4.85127272e-09   2.73934514e-10 ...,   2.82575421e-08
   4.45382259e-10   4.71239991e-10]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6737]
6737
you
11
[  4.83174507e-11   1.07975698e-10   5.41443890e-14 ...,   2.43229548e-10
   6.06516573e-11   1.78173155e-12]
[  4.83174507e-11   1.07975698e-10   5.41443890e-14 ...,   2.43229548e-10
   6.06516573e-11   1.78173155e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[2513]
2513
gotta
12
[  1.54541180e-12   1.43926741e-13   7.83358364e-14 ...,   1.12678193e-10
   1.53979343e-10   2.42687001e-14]
[  1.54541180e-12   1.43926741e-13   7.83358364e-14 ...,   1.12678193e-10
   1.53979343e-10   2.42687001e-14]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[1676]
1676
do
13
[  1.72770243e-09   1.32362795e-12   1.10798115e-11 ...,   2.80746258e-06
   1.38041667e-09   3.77234832e-12]
[  1.72770243e-09   1.32362795e-12   1.10798115e-11 ...,   2.80746258e-06
   1.38041667e-09   3.77234832e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[3070]
3070
is
14
[  9.75462933e-10   1.42160979e-12   1.22922356e-13 ...,   7.26810967e-08
   2.61242028e-10   7.53222693e-11]
[  9.75462933e-10   1.42160979e-12   1.22922356e-13 ...,   7.26810967e-08
   2.61242028e-10   7.53222693e-11]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[2139]
2139
fight
15
[  1.49692481e-11   3.16247001e-14   3.53113589e-13 ...,   4.32963532e-08
   1.62928174e-07   3.82656451e-15]
[  1.49692481e-11   3.16247001e-14   3.53113589e-13 ...,   4.32963532e-08
   1.62928174e-07   3.82656451e-15]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[1741]
1741
drederick
16
[  5.41227028e-11   1.05376255e-12   1.78456708e-10 ...,   6.69301059e-10
   1.73265171e-08   7.64334429e-12]
[  5.41227028e-11   1.05376255e-12   1.78456708e-10 ...,   6.69301059e-10
   1.73265171e-08   7.64334429e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[5880]
5880
tatum
17
[  1.94506317e-13   3.08230817e-13   1.78930777e-13 ...,   2.25606858e-08
   2.31959341e-10   6.59535799e-16]
[  1.94506317e-13   3.08230817e-13   1.78930777e-13 ...,   2.25606858e-08
   2.31959341e-10   6.59535799e-16]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6770]
6770
||dot||
18
[  6.07729036e-13   3.55243647e-11   6.62163657e-08 ...,   7.44642676e-08
   2.58020931e-11   2.67428735e-11]
[  6.07729036e-13   3.55243647e-11   6.62163657e-08 ...,   7.44642676e-08
   2.58020931e-11   2.67428735e-11]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[3081]
3081
it's
19
[  2.41808656e-10   7.70273845e-11   3.30677846e-10 ...,   1.79697448e-08
   4.13424546e-12   5.00403852e-09]
[  2.41808656e-10   7.70273845e-11   3.30677846e-10 ...,   1.79697448e-08
   4.13424546e-12   5.00403852e-09]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6004]
6004
this
20
[  2.82276869e-10   5.56418453e-11   4.55116700e-09 ...,   6.07476247e-09
   9.62080304e-10   1.42377321e-09]
[  2.82276869e-10   5.56418453e-11   4.55116700e-09 ...,   6.07476247e-09
   9.62080304e-10   1.42377321e-09]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[5035]
5035
saturday
21
[  1.85681288e-12   3.66420538e-09   2.69016059e-11 ...,   1.16317004e-12
   9.48512362e-12   9.18538317e-14]
[  1.85681288e-12   3.66420538e-09   2.69016059e-11 ...,   1.16317004e-12
   9.48512362e-12   9.18538317e-14]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6770]
6770
||dot||
22
[  7.81869485e-16   6.39473609e-13   2.95262404e-12 ...,   5.03317554e-10
   6.30067960e-12   1.70217888e-16]
[  7.81869485e-16   6.39473609e-13   2.95262404e-12 ...,   5.03317554e-10
   6.30067960e-12   1.70217888e-16]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[2754]
2754
here's
23
[  1.13881526e-06   1.10063824e-11   2.94796002e-12 ...,   2.57566835e-09
   2.21137844e-10   5.19525800e-09]
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.
64
[  3.56008556e-10   2.35713049e-09   5.48789149e-06 ...,   1.02182048e-05
   7.30485317e-09   2.64325672e-09]
[  3.56008556e-10   2.35713049e-09   5.48789149e-06 ...,   1.02182048e-05
   7.30485317e-09   2.64325672e-09]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6775]
6775
||return||
64
[  2.64337353e-13   2.87794411e-09   6.29192315e-12 ...,   6.91602679e-07
   1.67152570e-10   1.95826008e-10]
[  2.64337353e-13   2.87794411e-09   6.29192315e-12 ...,   6.91602679e-07
   1.67152570e-10   1.95826008e-10]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[878]
878
c
64
[  2.72493260e-14   8.02205199e-13   2.51811206e-15 ...,   7.16808444e-08
   1.41783703e-11   1.04111842e-13]
[  2.72493260e-14   8.02205199e-13   2.51811206e-15 ...,   7.16808444e-08
   1.41783703e-11   1.04111842e-13]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6770]
6770
||dot||
64
[  5.49301869e-13   3.16925652e-11   3.40004802e-09 ...,   2.32107045e-08
   1.22341803e-10   6.59748775e-12]
[  5.49301869e-13   3.16925652e-11   3.40004802e-09 ...,   2.32107045e-08
   1.22341803e-10   6.59748775e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[59]
59
_montgomery_burns:
64
[  2.77694978e-09   2.30780515e-08   6.40507336e-09 ...,   6.96488905e-06
   2.95167391e-10   5.05027799e-07]
[  2.77694978e-09   2.30780515e-08   6.40507336e-09 ...,   6.96488905e-06
   2.95167391e-10   5.05027799e-07]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6505]
6505
what
64
[  1.40429179e-09   2.75079421e-11   2.10614824e-11 ...,   1.68522729e-09
   3.75435238e-10   6.26780086e-11]
[  1.40429179e-09   2.75079421e-11   2.10614824e-11 ...,   1.68522729e-09
   3.75435238e-10   6.26780086e-11]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[2500]
2500
good
64
[  1.27754129e-09   5.61429202e-11   2.53698126e-12 ...,   6.72807532e-10
   4.59953936e-10   3.50102027e-14]
[  1.27754129e-09   5.61429202e-11   2.53698126e-12 ...,   6.72807532e-10
   4.59953936e-10   3.50102027e-14]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[3070]
3070
is
64
[  1.01116593e-09   6.84061369e-13   2.88551836e-14 ...,   1.31953348e-09
   1.13416561e-10   1.98911634e-12]
[  1.01116593e-09   6.84061369e-13   2.88551836e-14 ...,   1.31953348e-09
   1.13416561e-10   1.98911634e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[3832]
3832
money
64
[  1.67748315e-11   9.09611254e-13   1.80089017e-13 ...,   1.78286122e-10
   1.37240622e-10   1.71674415e-13]
[  1.67748315e-11   9.09611254e-13   1.80089017e-13 ...,   1.78286122e-10
   1.37240622e-10   1.71674415e-13]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[2942]
2942
if
64
[  8.62518390e-13   1.63121690e-14   1.82077313e-12 ...,   5.12002821e-13
   9.35426053e-14   2.35792085e-14]
[  8.62518390e-13   1.63121690e-14   1.82077313e-12 ...,   5.12002821e-13
   9.35426053e-14   2.35792085e-14]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6737]
6737
you
64
[  2.01578034e-12   1.02082180e-11   2.39826345e-12 ...,   7.76835096e-10
   7.71478104e-10   2.25658658e-11]
[  2.01578034e-12   1.02082180e-11   2.39826345e-12 ...,   7.76835096e-10
   7.71478104e-10   2.25658658e-11]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[909]
909
can't
64
[  3.00435844e-14   8.31026464e-14   3.57825596e-12 ...,   3.59085678e-12
   4.84293404e-11   3.71398494e-15]
[  3.00435844e-14   8.31026464e-14   3.57825596e-12 ...,   3.59085678e-12
   4.84293404e-11   3.71398494e-15]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[3021]
3021
inspire
64
[  1.44004975e-10   1.35089023e-11   1.66821591e-11 ...,   2.06076253e-10
   8.52470095e-09   6.90599184e-12]
[  1.44004975e-10   1.35089023e-11   1.66821591e-11 ...,   2.06076253e-10
   8.52470095e-09   6.90599184e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[5937]
5937
terror
64
[  1.05388805e-16   5.95246686e-16   2.10212699e-17 ...,   1.67397693e-11
   2.61104888e-10   5.60459035e-14]
[  1.05388805e-16   5.95246686e-16   2.10212699e-17 ...,   1.67397693e-11
   2.61104888e-10   5.60459035e-14]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[2964]
2964
in
64
[  7.74319497e-11   1.19688478e-11   3.29256865e-11 ...,   1.20887265e-07
   2.46537812e-09   1.99327902e-12]
[  7.74319497e-11   1.19688478e-11   3.29256865e-11 ...,   1.20887265e-07
   2.46537812e-09   1.99327902e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6749]
6749
your
64
[  2.68094184e-12   2.56068669e-12   6.67052247e-11 ...,   2.26210630e-11
   4.71828436e-12   1.50935359e-14]
[  2.68094184e-12   2.56068669e-12   6.67052247e-11 ...,   2.26210630e-11
   4.71828436e-12   1.50935359e-14]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[2117]
2117
fellow
64
[  5.36072276e-16   5.63693887e-14   5.93707104e-13 ...,   1.54749477e-11
   3.96410261e-17   4.66070108e-13]
[  5.36072276e-16   5.63693887e-14   5.93707104e-13 ...,   1.54749477e-11
   3.96410261e-17   4.66070108e-13]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[3610]
3610
man
64
[  6.21108593e-15   2.49546443e-14   3.34780150e-14 ...,   1.63909455e-08
   8.97022248e-11   4.97137444e-12]
[  6.21108593e-15   2.49546443e-14   3.34780150e-14 ...,   1.63909455e-08
   8.97022248e-11   4.97137444e-12]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6773]
6773
||questionmark||
64
[  3.70403057e-12   1.12368986e-11   3.19271803e-10 ...,   2.19350611e-07
   4.51407106e-10   1.22615573e-09]
[  3.70403057e-12   1.12368986e-11   3.19271803e-10 ...,   2.19350611e-07
   4.51407106e-10   1.22615573e-09]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6772]
6772
||leftparenthesis||
64
[  2.61880951e-11   1.18951333e-12   1.95927280e-12 ...,   7.61426477e-09
   3.02254272e-12   8.47985930e-08]
[  2.61880951e-11   1.18951333e-12   1.95927280e-12 ...,   7.61426477e-09
   3.02254272e-12   8.47985930e-08]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[1583]
1583
determined
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.
64
[  9.25690731e-14   4.60225191e-11   6.31331576e-13 ...,   7.97284230e-08
   4.66807981e-11   4.13296897e-11]
[  9.25690731e-14   4.60225191e-11   6.31331576e-13 ...,   7.97284230e-08
   4.66807981e-11   4.13296897e-11]
{0: '$42', 1: '&', 2: "'", 3: "'bout", 4: "'cause", 5: "'cept", 6: "'ceptin'", 7: "'em", 8: "'er", 9: "'ere", 10: "'evening", 11: "'im", 12: "'kay-zugg'", 13: "'morning", 14: "'n'", 15: "'now", 16: "'pu", 17: "'roids", 18: "'round", 19: "'s", 20: "'til", 21: "'tis", 22: "'topes", 23: "'your", 24: '-ry', 25: '/', 26: '/mr', 27: '1-800-555-hugs', 28: '100', 29: '10:15', 30: '14', 31: '1895', 32: '1973', 33: '1979', 34: '2', 35: '21', 36: '250', 37: '2nd_voice_on_transmitter:', 38: '3', 39: '35', 40: '3rd_voice:', 41: '4x4', 42: '50%', 43: '50-60', 44: '530', 45: '6', 46: '7-year-old_brockman:', 47: '70', 48: '7g', 49: '8', 50: '91', 51: ':', 52: '_babcock:', 53: '_burns_heads:', 54: '_eugene_blatz:', 55: '_hooper:', 56: '_julius_hibbert:', 57: '_kissingher:', 58: '_marvin_monroe:', 59: '_montgomery_burns:', 60: '_powers:', 61: '_timothy_lovejoy:', 62: '_zander:', 63: 'a', 64: 'a-a-b-b-a', 65: 'a-b-', 66: 'a-lug', 67: 'aah', 68: 'ab', 69: 'abandon', 70: 'abcs', 71: 'abe', 72: 'abercrombie', 73: 'able', 74: 'aboard', 75: 'abolish', 76: 'about', 77: 'above', 78: 'absentminded', 79: 'absentmindedly', 80: 'absolut', 81: 'absolutely', 82: 'absorbent', 83: 'abusive', 84: 'academy', 85: 'accelerating', 86: 'accent', 87: 'accept', 88: 'acceptance', 89: 'accepting', 90: 'access', 91: 'accident', 92: 'accidents', 93: 'according', 94: 'accounta', 95: 'accurate', 96: 'accusing', 97: 'achebe', 98: 'achem', 99: 'acquaintance', 100: 'acquitted', 101: 'acronyms', 102: 'across', 103: 'act', 104: 'acting', 105: 'action', 106: 'activity', 107: 'actor', 108: 'actors', 109: 'actress', 110: 'actually', 111: 'ad', 112: 'add', 113: 'addiction', 114: 'additional-seating-capacity', 115: 'address', 116: 'adeleine', 117: 'adequate', 118: 'adjourned', 119: 'adjust', 120: 'administration', 121: 'admiration', 122: 'admirer', 123: 'admiring', 124: 'admit', 125: 'admitting', 126: 'adopted', 127: 'adrift', 128: 'ads', 129: 'adult', 130: 'adult_bart:', 131: 'advance', 132: 'advantage', 133: 'adventure', 134: 'advertise', 135: 'advertising', 136: 'advice', 137: 'aer', 138: 'aerosmith', 139: 'aerospace', 140: 'affectations', 141: 'affection', 142: 'affects', 143: 'afford', 144: 'afloat', 145: 'afraid', 146: 'africa', 147: 'african', 148: 'africanized', 149: 'after', 150: 'afterglow', 151: 'afternoon', 152: 'again', 153: 'against', 154: 'age', 155: 'aged', 156: 'aged_moe:', 157: 'agency', 158: 'agent', 159: 'agent_johnson:', 160: 'agent_miller:', 161: 'agents', 162: 'aggie', 163: 'aggravated', 164: 'aggravazes', 165: 'agh', 166: 'aghast', 167: 'aging', 168: 'agnes_skinner:', 169: 'ago', 170: 'agree', 171: 'agreement', 172: 'ah', 173: 'ah-ha', 174: 'ahead', 175: 'ahem', 176: 'ahh', 177: 'ahhh', 178: 'ahhhh', 179: 'aid', 180: 'aiden', 181: 'aidens', 182: 'ails', 183: 'aims', 184: "ain't", 185: 'air', 186: 'airport', 187: 'aisle', 188: 'al', 189: 'al_gore:', 190: 'alarm', 191: 'albeit', 192: 'albert', 193: 'alcohol', 194: 'alcoholic', 195: 'alcoholism', 196: 'ale', 197: 'alec_baldwin:', 198: 'alfalfa', 199: 'alfred', 200: 'ali', 201: 'alibi', 202: 'alien', 203: 'alive', 204: 'alky', 205: 'all', 206: 'all-all-all', 207: 'all-american', 208: 'all-star', 209: 'all:', 210: 'allegiance', 211: 'alley', 212: 'allow', 213: 'allowance', 214: 'allowed', 215: 'alls', 216: 'alma', 217: 'almond', 218: 'almost', 219: 'alone', 220: 'along', 221: 'alpha-crow', 222: 'alphabet', 223: 'already', 224: 'alright', 225: 'also', 226: 'alter', 227: 'alternative', 228: 'although', 229: 'alva', 230: 'always', 231: 'am', 232: 'amanda', 233: 'amazed', 234: 'amazing', 235: 'amber', 236: 'amber_dempsey:', 237: 'ambrose', 238: 'ambrosia', 239: 'amends', 240: 'america', 241: "america's", 242: 'american', 243: 'americans', 244: 'amiable', 245: 'amid', 246: 'amnesia', 247: 'amount', 248: 'amused', 249: 'an', 250: 'anarchy', 251: 'ancestors', 252: 'ancient', 253: 'and', 254: 'and-and', 255: 'and/or', 256: 'and:', 257: 'andalay', 258: 'anderson', 259: 'andrew', 260: 'andy', 261: 'angel', 262: 'anger', 263: 'angrily', 264: 'angry', 265: 'anguished', 266: 'animals', 267: 'annie', 268: 'anniversary', 269: 'announcer:', 270: 'annoyed', 271: 'annoying', 272: 'annual', 273: 'annus', 274: 'anonymous', 275: 'another', 276: 'answer', 277: 'answered', 278: 'answering', 279: 'answers', 280: 'anthony_kiedis:', 281: 'anti-crime', 282: 'anti-intellectualism', 283: 'anti-lock', 284: 'anxious', 285: 'any', 286: 'anybody', 287: 'anyhoo', 288: 'anyhow', 289: 'anymore', 290: 'anyone', 291: 'anything', 292: 'anyway', 293: 'anywhere', 294: 'apart', 295: 'apartment', 296: 'ape-like', 297: 'apology', 298: 'app', 299: 'appalled', 300: 'appealing', 301: 'appeals', 302: 'appear', 303: 'appearance-altering', 304: 'appendectomy', 305: 'applesauce', 306: 'applicant', 307: 'application', 308: 'apply', 309: 'appointment', 310: 'appreciate', 311: 'appreciated', 312: 'appropriate', 313: 'approval', 314: 'apron', 315: 'apu', 316: 'apu_nahasapeemapetilon:', 317: 'apulina', 318: 'aquafresh', 319: 'arab_man:', 320: 'arabs', 321: 'archaeologist', 322: 'are', 323: "aren't", 324: "aren'tcha", 325: 'argue', 326: 'arguing', 327: 'arimasen', 328: 'arise', 329: "aristotle's", 330: 'aristotle:', 331: 'arm', 332: 'arm-pittish', 333: 'arms', 334: 'army', 335: 'around', 336: 'arrange', 337: 'arrest', 338: 'arrested:', 339: 'arrived', 340: 'arse', 341: 'art', 342: 'artie', 343: 'artie_ziff:', 344: 'artist', 345: 'arts', 346: 'as', 347: 'ashamed', 348: 'ashtray', 349: 'aside', 350: 'ask', 351: 'asked', 352: "askin'", 353: 'asking', 354: 'asks', 355: 'asleep', 356: 'ass', 357: 'assassination', 358: 'assent', 359: 'assert', 360: 'asses', 361: 'assistant', 362: 'associate', 363: 'assume', 364: 'assumed', 365: 'astonishment', 366: 'astrid', 367: 'astronaut', 368: 'astronauts', 369: 'at', 370: 'atari', 371: 'ate', 372: 'atlanta', 373: 'attach', 374: 'attached', 375: 'attack', 376: 'attempting', 377: 'attend', 378: 'attention', 379: 'attitude', 380: 'attracted', 381: 'attraction', 382: 'attractive', 383: 'attractive_woman_#1:', 384: 'attractive_woman_#2:', 385: 'au', 386: 'audience', 387: 'audience:', 388: 'augustus', 389: 'aunt', 390: 'authenticity', 391: 'author', 392: 'authorized', 393: 'automobiles', 394: 'available', 395: 'avalanche', 396: 'avec', 397: 'avenue', 398: 'average', 399: 'average-looking', 400: 'aw', 401: 'awake', 402: 'awareness', 403: 'away', 404: 'awe', 405: 'awed', 406: 'awesome', 407: 'awful', 408: 'awfully', 409: 'awkward', 410: 'awkwardly', 411: 'aww', 412: 'awww', 413: 'awwww', 414: 'ayyy', 415: 'aziz', 416: 'b', 417: "b-52's:", 418: 'b-day', 419: 'babar', 420: 'babe', 421: 'babies', 422: 'baby', 423: 'bachelor', 424: 'bachelorette', 425: 'bachelorhood', 426: 'back', 427: 'backbone', 428: 'backgammon', 429: 'background', 430: 'backing', 431: 'backward', 432: 'backwards', 433: 'bad', 434: 'bad-mouth', 435: 'badge', 436: 'badges', 437: 'badly', 438: 'badmouth', 439: 'badmouths', 440: 'bag', 441: 'bagged', 442: 'bags', 443: 'bail', 444: 'bake', 445: 'bald', 446: 'ball', 447: "ball's", 448: 'ball-sized', 449: 'ballclub', 450: 'balloon', 451: 'ballot', 452: 'balls', 453: 'baloney', 454: 'bam', 455: 'band', 456: 'bank', 457: 'banks', 458: 'banned', 459: 'bannister', 460: 'banquet', 461: 'banquo', 462: 'bar', 463: "bar's", 464: 'bar-boy', 465: 'bar:', 466: 'bar_rag:', 467: 'barbara', 468: 'barbed', 469: 'barber', 470: 'barely', 471: 'barf', 472: 'barflies', 473: 'barflies:', 474: 'baritone', 475: 'barkeep', 476: 'barkeeps', 477: 'barn', 478: 'barney', 479: "barney's", 480: 'barney-guarding', 481: 'barney-shaped_form:', 482: 'barney-type', 483: 'barney_gumble:', 484: 'bars', 485: 'barstools', 486: 'bart', 487: "bart'd", 488: "bart's", 489: 'bart_simpson:', 490: 'bartender', 491: "bartender's", 492: 'bartenders', 493: 'bartending', 494: 'barter', 495: 'bartholomé:', 496: 'baseball', 497: 'based', 498: 'basement', 499: 'bash', 500: 'bashir', 501: "bashir's", 502: 'bastard', 503: 'bathed', 504: 'bathing', 505: 'bathroom', 506: 'bathtub', 507: 'batmobile', 508: "battin'", 509: 'bauer', 510: 'be', 511: 'be-stainèd', 512: 'beach', 513: 'beached', 514: 'beady', 515: 'beam', 516: 'beanbag', 517: 'beans', 518: 'bear', 519: 'beard', 520: 'beards', 521: 'bears', 522: 'beast', 523: 'beat', 524: 'beating', 525: 'beatings', 526: 'beats', 527: 'beaumarchais', 528: 'beaumont', 529: 'beautiful', 530: 'beauty', 531: 'became', 532: 'because', 533: 'become', 534: 'bed', 535: 'bedbugs', 536: 'bedridden', 537: 'bedroom', 538: 'bedtime', 539: 'bee', 540: 'beef', 541: 'beefs', 542: 'been', 543: 'beep', 544: 'beeps', 545: 'beer', 546: "beer's", 547: 'beer-dorf', 548: 'beer-jerks', 549: 'beer:', 550: 'beers', 551: 'bees', 552: 'before', 553: 'befouled', 554: 'befriend', 555: 'began', 556: "beggin'", 557: 'begging', 558: 'begin', 559: 'beginning', 560: 'begins', 561: 'behavior', 562: 'behind', 563: "bein'", 564: 'being', 565: 'beings', 566: 'belch', 567: 'belches', 568: 'believe', 569: 'believer', 570: 'beligerent', 571: 'bell', 572: 'belly', 573: 'belly-aching', 574: 'bellyaching', 575: 'belong', 576: 'beloved', 577: 'belt', 578: 'belts', 579: 'bender:', 580: 'beneath', 581: 'benefits', 582: 'benjamin', 583: 'benjamin:', 584: 'besides', 585: 'best', 586: 'bet', 587: 'betcha', 588: 'betrayed', 589: 'bets', 590: "betsy'll", 591: 'better', 592: "bettin'", 593: 'betty:', 594: 'between', 595: 'beverage', 596: 'beyond', 597: 'bible', 598: 'bid', 599: 'bide', 600: 'bidet', 601: 'big', 602: 'bigger', 603: 'biggest', 604: 'bike', 605: 'bill', 606: 'bill_james:', 607: 'billboard', 608: 'billiard', 609: 'billingsley', 610: 'billion', 611: 'bills', 612: 'billy_the_kid:', 613: 'bindle', 614: 'binoculars', 615: 'bird', 616: 'birth', 617: 'birthday', 618: 'birthplace', 619: 'bit', 620: 'bite', 621: 'bites', 622: 'bits', 623: 'bitter', 624: 'bitterly', 625: 'black', 626: 'blackjack', 627: "bladder's", 628: 'blade', 629: 'blame', 630: 'blamed', 631: 'blank', 632: 'blaze', 633: 'bleacher', 634: 'bleak', 635: 'bleeding', 636: 'blend', 637: 'bless', 638: 'blessing', 639: 'blew', 640: 'blimp', 641: 'blind', 642: 'blinded', 643: 'blinds', 644: 'bliss', 645: 'blissful', 646: 'blob', 647: 'blobbo', 648: 'blocked', 649: 'blokes', 650: 'blood', 651: 'blood-thirsty', 652: 'bloodball', 653: 'blooded', 654: 'bloodiest', 655: 'blossoming', 656: 'blow', 657: 'blowfish', 658: "blowin'", 659: 'blown', 660: 'blows', 661: 'blubberino', 662: 'blue', 663: 'blues', 664: 'bluff', 665: 'blur', 666: 'blurbs', 667: "bo's", 668: 'boat', 669: 'bob', 670: 'bobo', 671: 'body', 672: 'boggs', 673: 'boisterous', 674: 'bold', 675: 'bolting', 676: 'bon', 677: 'bon-bons', 678: 'bonding', 679: 'boned', 680: 'boneheaded', 681: 'bones', 682: 'bonfire', 683: 'bono', 684: 'bono:', 685: 'boo', 686: 'booger', 687: 'book', 688: 'book_club_member:', 689: 'bookie', 690: 'booking', 691: 'books', 692: 'booth', 693: 'booze', 694: 'booze-bags', 695: 'boozebag', 696: 'boozehound', 697: 'boozer', 698: 'boozy', 699: 'boring', 700: 'born', 701: 'borrow', 702: 'boston', 703: 'botanical', 704: 'both', 705: 'bothered', 706: 'bottle', 707: 'bottles', 708: 'bottom', 709: 'bottomless', 710: 'bottoms', 711: 'bought', 712: 'bounced', 713: 'bouquet', 714: 'bourbon', 715: 'bow', 716: 'bowie', 717: 'bowl', 718: 'bowled', 719: 'bowling', 720: 'box', 721: 'boxcar', 722: 'boxcars', 723: 'boxer', 724: 'boxer:', 725: 'boxers', 726: 'boxing', 727: 'boxing_announcer:', 728: 'boy', 729: "boy's", 730: 'boyfriend', 731: 'boyhood', 732: 'boys', 733: 'brace', 734: "brady's", 735: 'brag', 736: 'bragging', 737: 'brain', 738: 'brain-switching', 739: 'brainheaded', 740: 'brainiac', 741: 'brains', 742: 'brakes', 743: 'branding', 744: 'brandy', 745: 'bras', 746: 'brassiest', 747: 'braun:', 748: 'brave', 749: 'brawled', 750: 'bread', 751: 'break', 752: 'break-up', 753: 'breakdown', 754: 'breakfast', 755: "breakin'", 756: 'breaking', 757: 'breaks', 758: 'breath', 759: 'breathalyzer', 760: 'breathless', 761: 'breathtaking', 762: 'bret', 763: 'bret:', 764: 'brewed', 765: 'brick', 766: 'bride', 767: 'bridge', 768: 'bridges', 769: 'brief', 770: 'briefly', 771: 'bright', 772: 'brightening', 773: 'brilliant', 774: 'brine', 775: 'bring', 776: "bringin'", 777: 'brings', 778: 'britannia', 779: 'british', 780: 'broad', 781: 'broadway', 782: 'brockelstein', 783: 'brockman', 784: "brockman's", 785: 'broke', 786: 'broken', 787: 'broken:', 788: 'bronco', 789: 'broncos', 790: 'brooklyn', 791: 'broom', 792: 'brother', 793: 'brother-in-law', 794: 'brotherhood', 795: 'brothers', 796: 'brought', 797: 'brow', 798: 'brown', 799: 'browns', 800: 'brunch', 801: 'brunswick', 802: 'brusque', 803: 'bubble', 804: 'bubbles', 805: 'bubbles-in-my-nose-y', 806: 'bucket', 807: 'bucks', 808: 'buddha', 809: 'buddies', 810: 'buddy', 811: 'buds', 812: 'buffalo', 813: "buffalo's", 814: 'buffet', 815: 'bugging', 816: 'bugs', 817: 'build', 818: 'built', 819: 'bulked', 820: 'bull', 821: 'bulldozing', 822: 'bullet-proof', 823: 'bulletin', 824: 'bully', 825: 'bum:', 826: 'bumblebee_man:', 827: 'bumbling', 828: 'bump', 829: 'bumped', 830: 'bumpy-like', 831: 'bums', 832: 'bunch', 833: 'bunion', 834: 'bupkus', 835: 'burg', 836: 'burger', 837: 'burglary', 838: 'buried', 839: 'burn', 840: "burnin'", 841: 'burning', 842: 'burns', 843: 'burnside', 844: 'burp', 845: 'burps', 846: 'bursts', 847: 'burt', 848: 'burt_reynolds:', 849: 'bury', 850: 'bus', 851: 'bush', 852: 'bushes', 853: 'busiest', 854: 'business', 855: 'businessman_#1:', 856: 'businessman_#2:', 857: 'bust', 858: 'busted', 859: 'busy', 860: 'but', 861: 'butt', 862: 'butter', 863: 'butterball', 864: 'buttocks', 865: 'button', 866: 'button-pusher', 867: 'buttons', 868: 'butts', 869: 'buy', 870: 'buyer', 871: "buyin'", 872: 'buying', 873: 'buzz', 874: 'buzziness', 875: 'by', 876: 'bye', 877: 'byrne', 878: 'c', 879: "c'mere", 880: "c'mom", 881: "c'mon", 882: 'cab', 883: 'cab_driver:', 884: 'cable', 885: 'cadillac', 886: 'cage', 887: 'caholic', 888: 'cajun', 889: 'cake', 890: 'cakes', 891: 'calculate', 892: 'calendars', 893: "calf's", 894: 'california', 895: 'call', 896: 'called', 897: "callin'", 898: 'calling', 899: 'calls', 900: 'calm', 901: 'calmly', 902: 'calvin', 903: 'came', 904: 'camera', 905: 'cameras', 906: 'camp', 907: 'campaign', 908: 'can', 909: "can't", 910: "can't-believe-how-bald-he-is", 911: "can'tcha", 912: 'candidate', 913: 'candles', 914: 'candy', 915: 'cannoli', 916: 'cannot', 917: 'canoodling', 918: 'cans', 919: 'canyoner-oooo', 920: 'canyonero', 921: 'cap', 922: 'caper', 923: 'capitalists', 924: 'capitol', 925: 'cappuccino', 926: 'captain', 927: 'captain:', 928: 'capuchin', 929: 'car', 930: "car's", 931: 'car:', 932: 'carb', 933: 'card', 934: 'cards', 935: 'care', 936: 'career', 937: 'careful', 938: 'carefully', 939: 'cares', 940: 'carey', 941: 'caricature', 942: 'carl', 943: "carl's", 944: 'carl:', 945: 'carl_carlson:', 946: 'carll', 947: 'carlotta:', 948: 'carlson', 949: 'carmichael', 950: 'carney', 951: 'carnival', 952: 'carny:', 953: 'carolina', 954: 'carpet', 955: 'cars', 956: 'cartoons', 957: 'carve', 958: 'case', 959: 'cases', 960: 'cash', 961: "cashin'", 962: 'casting', 963: 'castle', 964: 'casual', 965: 'cat', 966: "cat's", 967: 'catch', 968: 'catch-phrase', 969: 'catching', 970: 'catholic', 971: 'cats', 972: 'cattle', 973: 'catty', 974: 'caught', 975: 'cauliflower', 976: 'cause', 977: 'caused', 978: 'causes', 979: 'caveman', 980: 'cavern', 981: 'cecil', 982: 'cecil_terwilliger:', 983: 'celebrate', 984: 'celebration', 985: 'celebrities', 986: 'celebrity', 987: 'celeste', 988: 'cell', 989: 'cell-ee', 990: 'cent', 991: 'center', 992: 'cents', 993: 'century', 994: 'cerebral', 995: 'ceremony', 996: 'certain', 997: 'certainly', 998: 'certificate', 999: 'certified', 1000: 'cesss', 1001: 'chain', 1002: 'chained', 1003: 'chair', 1004: 'chairman', 1005: 'challenge', 1006: "challengin'", 1007: 'champ', 1008: 'champignons', 1009: 'champion', 1010: 'championship', 1011: 'champs', 1012: 'chance', 1013: 'change', 1014: 'changed', 1015: 'changes', 1016: "changin'", 1017: 'changing', 1018: 'channel', 1019: 'chanting', 1020: 'chapel', 1021: 'chapstick', 1022: 'chapter', 1023: 'character', 1024: 'characteristic', 1025: 'charge', 1026: 'charged', 1027: 'charges', 1028: 'charity', 1029: 'charlie', 1030: 'charlie:', 1031: 'charm', 1032: 'charming', 1033: 'charter', 1034: 'chase', 1035: 'chastity', 1036: 'chateau', 1037: 'chauffeur', 1038: 'chauffeur:', 1039: 'cheap', 1040: 'cheaped', 1041: 'cheaper', 1042: 'cheapskates', 1043: 'cheat', 1044: 'cheated', 1045: 'check', 1046: 'checking', 1047: 'checks', 1048: 'cheer', 1049: 'cheered', 1050: 'cheerier', 1051: "cheerin'", 1052: 'cheering', 1053: 'cheerleaders:', 1054: 'cheers', 1055: 'cheery', 1056: 'cheese', 1057: 'cheesecake', 1058: 'cherry', 1059: 'cheryl', 1060: 'chest', 1061: 'chew', 1062: "chewin'", 1063: 'chic', 1064: 'chick', 1065: 'chicken', 1066: 'chicks', 1067: 'chief', 1068: 'chief_wiggum:', 1069: 'child', 1070: 'childless', 1071: 'children', 1072: "children's", 1073: 'chili', 1074: 'chill', 1075: 'chilly', 1076: 'chin', 1077: 'chinese', 1078: 'chinese_restaurateur:', 1079: 'chinua', 1080: 'chip', 1081: 'chipped', 1082: 'chipper', 1083: 'chips', 1084: 'chocolate', 1085: 'choice', 1086: 'choice:', 1087: 'choices', 1088: 'choices:', 1089: 'choke', 1090: 'choked', 1091: 'choked-up', 1092: 'choking', 1093: 'choose', 1094: "choosin'", 1095: 'chorus:', 1096: 'chosen', 1097: 'chow', 1098: 'christian', 1099: 'christmas', 1100: 'christopher', 1101: 'chub', 1102: 'chubby', 1103: 'chuck', 1104: 'chuckle', 1105: 'chuckles', 1106: 'chuckling', 1107: 'chug', 1108: 'chug-a-lug', 1109: 'chug-monkeys', 1110: 'chum', 1111: 'chumbawamba', 1112: 'chunk', 1113: 'chunky', 1114: 'church', 1115: 'churchill', 1116: 'churchy', 1117: 'cigarette', 1118: 'cigarettes', 1119: 'cigars', 1120: 'circus', 1121: 'citizens', 1122: 'city', 1123: "city's", 1124: 'civic', 1125: 'civil', 1126: 'civilization', 1127: 'clammy', 1128: 'clams', 1129: "clancy's", 1130: 'clandestine', 1131: 'clap', 1132: 'clapping', 1133: 'class', 1134: 'classy', 1135: 'clean', 1136: 'cleaned', 1137: 'cleaner', 1138: "cleanin'", 1139: 'cleaning', 1140: 'clear', 1141: 'clearing', 1142: 'clearly', 1143: 'clears', 1144: 'clench', 1145: 'clenched', 1146: 'cletus_spuckler:', 1147: 'cleveland', 1148: 'clientele', 1149: 'cliff', 1150: 'clincher', 1151: 'clinton', 1152: 'clipped', 1153: 'clips', 1154: 'clock', 1155: 'clone', 1156: 'close', 1157: 'closed', 1158: 'closer', 1159: 'closes', 1160: 'closet', 1161: 'closing', 1162: 'clothes', 1163: 'clothespins', 1164: 'clothespins:', 1165: 'cloudy', 1166: 'clown', 1167: 'clown-like', 1168: 'club', 1169: 'clubs', 1170: 'co-sign', 1171: 'coach:', 1172: 'coal', 1173: 'coast', 1174: 'coaster', 1175: "coaster's", 1176: 'coat', 1177: 'cobbling', 1178: 'cobra', 1179: 'cock', 1180: 'cocking', 1181: 'cockroach', 1182: 'cockroaches', 1183: 'cocks', 1184: 'cocktail', 1185: 'cocoa', 1186: 'code', 1187: 'coffee', 1188: "coffee'll", 1189: 'coherent', 1190: 'coin', 1191: 'coincidentally', 1192: 'coined', 1193: 'coins', 1194: 'cola', 1195: 'cold', 1196: 'collapse', 1197: 'collateral', 1198: "collector's", 1199: 'college', 1200: 'collette:', 1201: 'cologne', 1202: 'colonel:', 1203: 'color', 1204: 'colorado', 1205: 'colossal', 1206: 'column', 1207: 'coma', 1208: 'combination', 1209: 'combine', 1210: 'combines', 1211: 'come', 1212: 'comeback', 1213: 'comedies', 1214: 'comedy', 1215: 'comes', 1216: 'comfortable', 1217: 'comforting', 1218: 'comic', 1219: 'comic_book_guy:', 1220: "comin'", 1221: 'coming', 1222: 'commanding', 1223: 'comment', 1224: 'commission', 1225: 'commit', 1226: 'committee', 1227: 'committing', 1228: 'common', 1229: 'community', 1230: 'compadre', 1231: 'company', 1232: 'compare', 1233: 'compared', 1234: 'compels', 1235: 'compete', 1236: 'competing', 1237: 'competitive', 1238: 'complaining', 1239: 'complaint', 1240: 'complete', 1241: 'completely', 1242: 'completing', 1243: 'complicated', 1244: 'compliment', 1245: 'compliments', 1246: 'composer', 1247: 'composite', 1248: 'compressions', 1249: 'compromise:', 1250: 'computer', 1251: 'computer_voice_2:', 1252: 'coms', 1253: 'con', 1254: 'concentrate', 1255: 'concerned', 1256: 'conclude', 1257: 'conclusions', 1258: 'conditioner', 1259: 'conditioners', 1260: 'conditioning', 1261: 'coney', 1262: 'conference', 1263: 'confession', 1264: 'confidence', 1265: 'confident', 1266: 'confidential', 1267: 'confidentially', 1268: 'confused', 1269: 'congoleum', 1270: 'congratulations', 1271: 'connection', 1272: 'connor', 1273: 'connor-politan', 1274: 'consciousness', 1275: 'consider', 1276: 'considering', 1277: 'considering:', 1278: 'considers', 1279: 'consoling', 1280: 'conspiracy', 1281: 'conspiratorial', 1282: 'consulting', 1283: "cont'd:", 1284: 'contact', 1285: 'contemplated', 1286: 'contemplates', 1287: 'contemporary', 1288: 'contemptuous', 1289: 'contented', 1290: 'contest', 1291: 'continued', 1292: 'continuing', 1293: 'continuum', 1294: 'contract', 1295: 'contractors', 1296: 'control', 1297: 'convenient', 1298: 'conversation', 1299: 'conversations', 1300: 'conversion', 1301: 'convinced', 1302: 'cooker', 1303: 'cookies', 1304: 'cooking', 1305: 'cool', 1306: 'cooler', 1307: 'cop', 1308: 'cops', 1309: 'copy', 1310: 'corkscrew', 1311: 'corkscrews', 1312: 'corn', 1313: 'corner', 1314: 'corporate', 1315: 'corporation', 1316: 'corpses', 1317: 'correct', 1318: 'correcting', 1319: 'correction', 1320: 'cosmetics', 1321: 'cost', 1322: 'costume', 1323: "costume's", 1324: 'cotton', 1325: 'couch', 1326: 'cough', 1327: 'coughs', 1328: 'could', 1329: "could've", 1330: "couldn't", 1331: 'count', 1332: 'counter', 1333: 'counterfeit', 1334: "countin'", 1335: 'counting', 1336: 'country', 1337: 'country-fried', 1338: 'countryman', 1339: 'county', 1340: 'couple', 1341: 'coupon', 1342: 'courage', 1343: 'course', 1344: 'court', 1345: 'courteous', 1346: 'courthouse', 1347: 'courts', 1348: 'cousin', 1349: 'cover', 1350: 'covering', 1351: 'covers', 1352: 'cow', 1353: 'coward', 1354: 'cowardly', 1355: 'cowboy', 1356: 'cowboys', 1357: 'coy', 1358: 'coyly', 1359: 'cozies', 1360: 'cozy', 1361: 'crab', 1362: 'crack', 1363: 'cracked', 1364: 'craft', 1365: 'cranberry', 1366: 'crank', 1367: 'crap', 1368: 'craphole', 1369: 'crapmore', 1370: 'crappy', 1371: 'crawl', 1372: "crawlin'", 1373: 'crayola', 1374: 'crayon', 1375: 'crazy', 1376: 'cream', 1377: 'created', 1378: 'creates', 1379: 'creature', 1380: 'credit', 1381: 'creeps', 1382: 'creepy', 1383: 'creme', 1384: 'crestfallen', 1385: 'crew', 1386: 'cricket', 1387: 'cries', 1388: 'crime', 1389: 'crimes', 1390: 'criminal', 1391: 'crinkly', 1392: 'crippling', 1393: 'crisis', 1394: 'cronies', 1395: 'crony', 1396: 'crooks', 1397: 'cross-country', 1398: 'crossed', 1399: 'crotch', 1400: 'crow', 1401: 'crowbar', 1402: 'crowd', 1403: 'crowd:', 1404: 'crowded', 1405: 'crowds', 1406: 'crowned', 1407: 'cruel', 1408: 'cruise', 1409: 'cruiser', 1410: 'crumble', 1411: 'crummy', 1412: 'crunch', 1413: 'crushed', 1414: 'crying', 1415: 'crystal', 1416: "cuckold's", 1417: 'cuckoo', 1418: 'cuddling', 1419: 'cueball', 1420: 'cuff', 1421: 'culkin', 1422: 'cummerbund', 1423: 'cup', 1424: 'cupid', 1425: "cupid's", 1426: 'curds', 1427: 'cure', 1428: 'curiosity', 1429: 'curious', 1430: 'curse', 1431: 'cursed', 1432: 'cushion', 1433: 'cushions', 1434: 'customer', 1435: 'customers', 1436: 'customers-slash-only', 1437: 'cut', 1438: 'cute', 1439: 'cutest', 1440: 'cutie', 1441: 'cutting', 1442: 'cuz', 1443: 'cyrano', 1444: 'd', 1445: "d'", 1446: "d'ya", 1447: 'daaaaad', 1448: 'dad', 1449: "dad's", 1450: 'daddy', 1451: 'dads', 1452: 'dae', 1453: 'dallas', 1454: 'damage', 1455: 'dame', 1456: 'dames', 1457: 'dammit', 1458: 'damn', 1459: 'damned', 1460: 'dan', 1461: 'dan_gillick:', 1462: 'dana_scully:', 1463: 'dance', 1464: 'dancing', 1465: 'dang', 1466: 'dangerous', 1467: 'daniel', 1468: 'danish', 1469: 'dank', 1470: 'danny', 1471: 'darjeeling', 1472: 'dark', 1473: 'darkest', 1474: 'darkness', 1475: 'darn', 1476: 'darts', 1477: 'dash', 1478: 'dashes', 1479: 'data', 1480: 'date', 1481: 'dateline', 1482: 'dateline:', 1483: 'dating', 1484: 'daughter', 1485: "daughter's", 1486: 'david', 1487: 'david_byrne:', 1488: 'dawning', 1489: 'day', 1490: 'days', 1491: 'dazed', 1492: 'de', 1493: 'de-scramble', 1494: 'dea-d-d-dead', 1495: 'deacon', 1496: 'dead', 1497: 'deadly', 1498: 'deal', 1499: 'dealer', 1500: 'dealie', 1501: 'deals', 1502: 'dealt', 1503: 'dean', 1504: 'dear', 1505: 'dearest', 1506: 'death', 1507: 'debonair', 1508: 'decadent', 1509: 'decency', 1510: 'decent', 1511: 'decide', 1512: 'decide:', 1513: 'decided', 1514: 'decision', 1515: 'declan', 1516: 'declan_desmond:', 1517: 'declare', 1518: 'declared', 1519: 'dee-fense', 1520: 'deep', 1521: 'deeper', 1522: 'deeply', 1523: 'deer', 1524: 'defeated', 1525: 'defected', 1526: 'defensive', 1527: 'defiantly', 1528: 'degradation', 1529: 'dejected', 1530: 'dejected_barfly:', 1531: 'delays', 1532: 'delete', 1533: 'deli', 1534: 'deliberate', 1535: 'deliberately', 1536: 'delicate', 1537: 'delicately', 1538: 'delicious', 1539: 'delighted', 1540: 'delightful', 1541: 'delightfully', 1542: 'delivery', 1543: 'delivery_boy:', 1544: 'delivery_man:', 1545: 'delts', 1546: 'demand', 1547: 'demo', 1548: 'democracy', 1549: 'democrats', 1550: 'dennis', 1551: 'dennis_conroy:', 1552: 'dennis_kucinich:', 1553: 'denser', 1554: 'dentist', 1555: 'denver', 1556: 'deny', 1557: 'department', 1558: "department's", 1559: 'depending', 1560: 'depository', 1561: 'depressant', 1562: 'depressed', 1563: "depressin'", 1564: 'depressing', 1565: 'depression', 1566: 'der', 1567: 'derek', 1568: 'derisive', 1569: 'deserve', 1570: 'design', 1571: 'designated', 1572: 'designer', 1573: 'desire', 1574: 'desperate', 1575: 'desperately', 1576: 'despite', 1577: 'dessert', 1578: 'destroyed', 1579: 'detail', 1580: 'detecting', 1581: 'detective', 1582: 'detective_homer_simpson:', 1583: 'determined', 1584: 'devastated', 1585: 'developed', 1586: 'device', 1587: 'devils:', 1588: 'dexterous', 1589: 'diablo', 1590: 'dials', 1591: 'diamond', 1592: 'diaper', 1593: 'diapers', 1594: 'dice', 1595: 'dictating', 1596: 'dictator', 1597: 'did', 1598: 'diddilies', 1599: "didn't", 1600: 'die', 1601: 'die-hard', 1602: 'died', 1603: 'dies', 1604: 'diet', 1605: 'diets', 1606: 'difference', 1607: 'different', 1608: 'difficult', 1609: 'dig', 1610: 'digging', 1611: 'dignified', 1612: 'dignity', 1613: 'dilemma', 1614: 'dime', 1615: 'diminish', 1616: 'dimly', 1617: "dimwit's", 1618: 'ding-a-ding-ding-a-ding-ding', 1619: 'ding-a-ding-ding-ding-ding-ding-ding', 1620: 'dingy', 1621: 'dinks', 1622: 'dinner', 1623: 'dint', 1624: 'dipping', 1625: 'direction', 1626: 'directions', 1627: 'director', 1628: 'director:', 1629: 'dirge-like', 1630: 'dirt', 1631: 'dirty', 1632: 'disappear', 1633: 'disappeared', 1634: 'disappointed', 1635: 'disappointing', 1636: 'disappointment', 1637: 'disapproving', 1638: 'disaster', 1639: 'disco', 1640: 'disco_stu:', 1641: 'discriminate', 1642: 'discuss', 1643: 'discussing', 1644: 'disdainful', 1645: 'disgrace', 1646: 'disgraceful', 1647: 'disgracefully', 1648: 'disguise', 1649: 'disguised', 1650: 'disgusted', 1651: 'dishonor', 1652: 'dishrag', 1653: 'disillusioned', 1654: 'dislike', 1655: 'dismissive', 1656: 'dispenser', 1657: 'displeased', 1658: 'disposal', 1659: "disrobin'", 1660: 'distance', 1661: 'distaste', 1662: 'distinct', 1663: 'distract', 1664: 'distraught', 1665: 'distributor', 1666: 'disturbance', 1667: 'disturbing', 1668: 'ditched', 1669: 'dive', 1670: 'divine', 1671: 'diving', 1672: 'divorced', 1673: 'dizer', 1674: 'dizzy', 1675: 'dna', 1676: 'do', 1677: 'doctor', 1678: "doctor's", 1679: 'does', 1680: "doesn't", 1681: 'dog', 1682: "dog's", 1683: 'dogs', 1684: "doin'", 1685: 'doing', 1686: 'doll', 1687: 'doll-baby', 1688: 'dollar', 1689: 'dollars', 1690: 'dollface', 1691: "dolph's_dad:", 1692: 'domed', 1693: 'domestic', 1694: 'don', 1695: "don't", 1696: "don'tcha", 1697: 'donate', 1698: 'donated', 1699: "donatin'", 1700: 'donation', 1701: 'done', 1702: 'done:', 1703: 'donor', 1704: 'donut', 1705: 'donut-shaped', 1706: 'donuts', 1707: 'doof', 1708: 'doom', 1709: 'doooown', 1710: 'door', 1711: 'doors', 1712: 'doppler', 1713: 'doreen', 1714: 'doreen:', 1715: 'dory', 1716: 'double', 1717: 'doubt', 1718: 'doug:', 1719: 'dough', 1720: 'down', 1721: 'doy', 1722: 'dozen', 1723: 'dr', 1724: 'dracula', 1725: 'drag', 1726: 'drains', 1727: 'dramatic', 1728: 'dramatically', 1729: 'drank', 1730: 'drapes', 1731: 'draw', 1732: 'drawer', 1733: "drawin'", 1734: 'drawing', 1735: 'drawn', 1736: 'dreamed', 1737: 'dreamily', 1738: 'dreams', 1739: 'dreamy', 1740: 'dreary', 1741: 'drederick', 1742: 'dregs', 1743: 'dress', 1744: 'dressed', 1745: 'dressing', 1746: "drexel's", 1747: 'drift', 1748: 'drink', 1749: 'drinker', 1750: "drinkin'", 1751: 'drinking', 1752: 'drinking:', 1753: 'drinks', 1754: 'drive', 1755: 'driveability', 1756: 'driver', 1757: 'drivers', 1758: 'drives', 1759: "drivin'", 1760: 'driving', 1761: 'drollery', 1762: 'droning', 1763: 'drop', 1764: 'drop-off', 1765: 'dropped', 1766: 'dropping', 1767: 'drove', 1768: 'drown', 1769: 'drug', 1770: 'drummer', 1771: 'drunk', 1772: 'drunkening', 1773: 'drunkenly', 1774: 'drunks', 1775: 'dry', 1776: 'dryer', 1777: 'du', 1778: 'ducked', 1779: 'dude', 1780: 'due', 1781: 'duel', 1782: "duelin'", 1783: 'duff', 1784: "duff's", 1785: 'duff_announcer:', 1786: 'duffed', 1787: 'duffman', 1788: 'duffman:', 1789: 'duh', 1790: 'duke', 1791: 'dull', 1792: 'dum-dum', 1793: 'dumb', 1794: 'dumb-asses', 1795: 'dumbass', 1796: 'dumbbell', 1797: 'dumbest', 1798: 'dump', 1799: 'dumpster', 1800: 'dumptruck', 1801: 'dungeon', 1802: 'dunno', 1803: 'during', 1804: 'dutch', 1805: 'duty', 1806: "dyin'", 1807: 'dying', 1808: 'dynamite', 1809: 'dyspeptic', 1810: 'düff', 1811: 'düffenbraus', 1812: 'e', 1813: 'e-z', 1814: 'each', 1815: 'eager', 1816: 'ear', 1817: 'earlier', 1818: 'early', 1819: 'earpiece', 1820: 'earrings', 1821: 'ears', 1822: 'earth', 1823: 'ease', 1824: 'easier', 1825: 'easily', 1826: 'east', 1827: 'easter', 1828: 'easy', 1829: 'easy-going', 1830: 'easygoing', 1831: 'eat', 1832: 'eaten', 1833: 'eaters', 1834: "eatin'", 1835: 'eating', 1836: 'eats', 1837: 'ebullient', 1838: 'ech', 1839: 'eco-fraud', 1840: 'ecru', 1841: 'eddie', 1842: 'eddie:', 1843: 'edelbrock', 1844: 'edge', 1845: 'edgy', 1846: 'edison', 1847: 'edna', 1848: "edna's", 1849: 'edna-lover-one-seventy-two', 1850: 'edna_krabappel-flanders:', 1851: 'edner', 1852: 'ees', 1853: 'effect', 1854: 'effects', 1855: 'effervescence', 1856: 'effervescent', 1857: 'effigy', 1858: 'egg', 1859: 'eggs', 1860: 'eggshell', 1861: 'eh', 1862: 'ehhh', 1863: 'ehhhhhh', 1864: 'ehhhhhhhh', 1865: 'ehhhhhhhhh', 1866: 'eight', 1867: 'eight-year-old', 1868: 'eightball', 1869: 'eighteen', 1870: 'eighty-five', 1871: 'eighty-one', 1872: 'eighty-seven', 1873: 'eighty-six', 1874: 'eighty-three', 1875: 'einstein', 1876: 'either', 1877: 'el', 1878: 'elaborate', 1879: 'elder', 1880: 'elect', 1881: 'election', 1882: 'electronic', 1883: 'elephants', 1884: 'eleven', 1885: 'eliminate', 1886: 'elite', 1887: 'elizabeth', 1888: 'elmer', 1889: "elmo's", 1890: 'elocution', 1891: 'else', 1892: 'elves:', 1893: 'email', 1894: 'embarrassed', 1895: 'embarrassing', 1896: 'emergency', 1897: 'eminence', 1898: 'emotion', 1899: 'emotional', 1900: 'emphasis', 1901: 'employees', 1902: 'employment', 1903: 'emporium', 1904: 'empty', 1905: 'enabling', 1906: 'encore', 1907: 'encores', 1908: 'encouraged', 1909: 'encouraging', 1910: 'end', 1911: 'endorse', 1912: 'endorsed', 1913: 'endorsement', 1914: 'ends', 1915: 'enemies', 1916: 'enemy', 1917: 'energy', 1918: 'enforced', 1919: 'engine', 1920: 'england', 1921: "england's", 1922: 'english', 1923: 'engraved', 1924: 'enhance', 1925: 'enjoy', 1926: 'enjoyed', 1927: "enjoyin'", 1928: 'enjoys', 1929: 'enlightened', 1930: 'enough', 1931: 'enter', 1932: 'entering', 1933: 'enterprising', 1934: 'entertainer', 1935: 'enthused', 1936: 'enthusiasm', 1937: 'enthusiastically', 1938: 'entire', 1939: 'entirely', 1940: 'entrance', 1941: 'enveloped', 1942: 'environment', 1943: 'envy-tations', 1944: 'equal', 1945: 'equivalent', 1946: 'er', 1947: 'erasers', 1948: 'error', 1949: 'errrrrrr', 1950: 'escort', 1951: 'especially', 1952: 'espn', 1953: 'espousing', 1954: 'estranged', 1955: 'etc', 1956: 'eternity', 1957: 'eu', 1958: 'european', 1959: 'eurotrash', 1960: 'eva', 1961: 'evasive', 1962: 'eve', 1963: 'even', 1964: 'evening', 1965: 'event', 1966: 'eventually', 1967: 'ever', 1968: 'evergreen', 1969: 'every', 1970: 'everybody', 1971: 'everyday', 1972: 'everyone', 1973: "everyone's", 1974: 'everything', 1975: 'everywhere', 1976: 'evil', 1977: 'evils', 1978: 'ew', 1979: 'eww', 1980: 'exact', 1981: 'exactly', 1982: 'examines', 1983: 'example', 1984: 'examples', 1985: 'exasperated', 1986: 'excavating', 1987: 'excellent', 1988: 'except', 1989: 'exception:', 1990: 'exchange', 1991: 'exchanged', 1992: 'excited', 1993: 'excitement', 1994: 'exciting', 1995: 'exclusive:', 1996: 'excuse', 1997: 'excuses', 1998: 'executive', 1999: 'exhale', 2000: 'exhaust', 2001: 'exhibit', 2002: 'exit', 2003: 'exited', 2004: 'exits', 2005: 'expect', 2006: 'expecting', 2007: 'expense', 2008: 'expensive', 2009: 'experience', 2010: 'experienced', 2011: 'experiments', 2012: 'expert', 2013: 'expired', 2014: 'explain', 2015: 'explaining', 2016: 'explanation', 2017: 'exploiter', 2018: 'expose', 2019: 'express', 2020: 'expression', 2021: 'exquisite', 2022: 'extended', 2023: 'extinguishers', 2024: 'extra', 2025: 'extract', 2026: 'extreme', 2027: 'extremely', 2028: 'exultant', 2029: 'eye', 2030: 'eye-gouger', 2031: 'eyeball', 2032: 'eyeballs', 2033: 'eyed', 2034: 'eyeing', 2035: 'eyes', 2036: 'eyesore', 2037: 'f', 2038: 'f-l-a-n-r-d-s', 2039: 'fabulous', 2040: 'face', 2041: 'face-macer', 2042: 'facebook', 2043: 'faced', 2044: 'faceful', 2045: 'faces', 2046: 'fact', 2047: 'factor', 2048: 'fad', 2049: 'faded', 2050: 'fail', 2051: 'failed', 2052: 'failure', 2053: 'faint', 2054: 'fainted', 2055: 'fair', 2056: 'faith', 2057: 'faiths', 2058: 'fake', 2059: 'falcons', 2060: 'fall', 2061: "fallin'", 2062: 'falling', 2063: 'falsetto', 2064: 'familiar', 2065: 'family', 2066: "family's", 2067: 'family-owned', 2068: 'famous', 2069: 'fan', 2070: 'fanciest', 2071: 'fancy', 2072: 'fans', 2073: "fans'll", 2074: 'fantastic', 2075: 'fantasy', 2076: 'far', 2077: 'farewell', 2078: 'farthest', 2079: 'fast', 2080: 'fast-food', 2081: 'fast-paced', 2082: 'fastest', 2083: 'fat', 2084: 'fat-free', 2085: 'fat_in_the_hat:', 2086: 'fat_tony:', 2087: 'father', 2088: "father's", 2089: 'fatso', 2090: 'fatty', 2091: 'faulkner', 2092: 'fault', 2093: 'fausto', 2094: 'favor', 2095: 'favorite', 2096: 'fayed', 2097: 'fbi', 2098: 'fbi_agent:', 2099: 'fdic', 2100: 'fears', 2101: 'feast', 2102: 'feat', 2103: 'federal', 2104: 'feed', 2105: 'feedbag', 2106: 'feel', 2107: "feelin's", 2108: 'feeling', 2109: 'feelings', 2110: 'feels', 2111: 'feet', 2112: 'feisty', 2113: 'feld', 2114: 'fell', 2115: 'fella', 2116: 'fellas', 2117: 'fellow', 2118: 'felony', 2119: 'felt', 2120: 'female_inspector:', 2121: 'feminine', 2122: 'femininity', 2123: 'feminist', 2124: 'fence', 2125: "fendin'", 2126: 'ferry', 2127: 'festival', 2128: 'fever', 2129: 'fevered', 2130: 'few', 2131: 'fica', 2132: 'fiction', 2133: 'fictional', 2134: 'field', 2135: 'fierce', 2136: 'fifteen', 2137: 'fifth', 2138: 'fifty', 2139: 'fight', 2140: 'fighter', 2141: "fightin'", 2142: 'fighting', 2143: 'fights', 2144: 'figure', 2145: 'figured', 2146: 'figures', 2147: 'fiiiiile', 2148: 'file', 2149: 'filed', 2150: 'fill', 2151: 'filled', 2152: 'fills', 2153: 'film', 2154: 'filth', 2155: 'filthy', 2156: 'finale', 2157: 'finally', 2158: 'finance', 2159: 'find', 2160: 'finding', 2161: 'fine', 2162: "fine-lookin'", 2163: 'finest', 2164: 'finger', 2165: 'fingers', 2166: 'finish', 2167: 'finished', 2168: 'finishing', 2169: 'fink', 2170: 'fire', 2171: 'fire_inspector:', 2172: 'fireball', 2173: 'fired', 2174: 'fires', 2175: 'fireworks', 2176: 'firing', 2177: 'firm', 2178: 'firmly', 2179: 'first', 2180: 'fish', 2181: "fishin'", 2182: 'fishing', 2183: 'fist', 2184: 'fistiana', 2185: 'fit', 2186: 'five', 2187: 'five-fifteen', 2188: 'fix', 2189: 'fixed', 2190: 'fixes', 2191: 'fl', 2192: 'flack', 2193: 'flag', 2194: 'flailing', 2195: 'flaking', 2196: 'flame', 2197: 'flames', 2198: 'flaming', 2199: 'flanders', 2200: 'flanders:', 2201: 'flash', 2202: 'flash-fry', 2203: 'flashbacks', 2204: 'flashing', 2205: 'flat', 2206: 'flatly', 2207: 'flayvin', 2208: 'flea:', 2209: 'fleabag', 2210: 'fledgling', 2211: 'fletcherism', 2212: 'flew', 2213: 'flexible', 2214: 'flips', 2215: 'floated', 2216: "floatin'", 2217: 'floating', 2218: 'floor', 2219: 'flophouse', 2220: 'flourish', 2221: 'flower', 2222: 'flowers', 2223: 'flown', 2224: 'fluoroscope', 2225: 'flush', 2226: 'flush-town', 2227: 'flustered', 2228: 'fly', 2229: 'flying', 2230: 'flynt', 2231: 'foam', 2232: 'focus', 2233: 'focused', 2234: 'foibles', 2235: 'foil', 2236: 'fold', 2237: 'folk', 2238: 'folks', 2239: 'follow', 2240: 'followed', 2241: 'following', 2242: 'fonda', 2243: 'fondest', 2244: 'fondly', 2245: 'fontaine', 2246: 'fonzie', 2247: 'food', 2248: 'foodie', 2249: 'fool', 2250: "foolin'", 2251: 'fools', 2252: 'foot', 2253: 'football', 2254: "football's", 2255: 'football_announcer:', 2256: 'for', 2257: 'forbidden', 2258: 'forbids', 2259: 'force', 2260: 'forced', 2261: 'ford', 2262: 'forecast', 2263: 'forehead', 2264: 'forever', 2265: 'forget', 2266: 'forget-me-drinks', 2267: 'forget-me-shot', 2268: 'forgets', 2269: 'forgive', 2270: 'forgiven', 2271: 'forgot', 2272: 'forgotten', 2273: 'fork', 2274: 'form', 2275: 'formico', 2276: 'formico:', 2277: 'fortensky', 2278: 'fortress', 2279: 'fortune', 2280: 'forty', 2281: 'forty-five', 2282: 'forty-nine', 2283: 'forty-seven', 2284: 'forty-two', 2285: 'forward', 2286: 'found', 2287: 'foundation', 2288: 'founded', 2289: 'fountain', 2290: 'four', 2291: 'four-drink', 2292: 'four-star', 2293: 'fourteen:', 2294: 'fourth', 2295: 'fox', 2296: 'fox_mulder:', 2297: 'fragile', 2298: 'france', 2299: 'frankenstein', 2300: 'frankie', 2301: 'frankly', 2302: 'frat', 2303: 'fraud', 2304: 'frazier', 2305: 'freak', 2306: 'freaking', 2307: 'freaky', 2308: 'free', 2309: 'freed', 2310: 'freedom', 2311: 'freely', 2312: 'freeze', 2313: 'french', 2314: 'frenchman', 2315: 'frescas', 2316: 'fresco', 2317: 'fresh', 2318: 'freshened', 2319: 'friction', 2320: 'friday', 2321: 'fridge', 2322: 'friend', 2323: "friend's", 2324: 'friend:', 2325: 'friendly', 2326: 'friends', 2327: 'friendship', 2328: 'frightened', 2329: 'fringe', 2330: 'frink', 2331: 'frink-y', 2332: 'fritz', 2333: 'fritz:', 2334: 'frog', 2335: 'frogs', 2336: 'from', 2337: 'front', 2338: 'frontrunner', 2339: 'frosty', 2340: 'frozen', 2341: 'fruit', 2342: 'frustrated', 2343: 'fry', 2344: "fryer's", 2345: 'fudd', 2346: 'fuhgetaboutit', 2347: 'full', 2348: 'full-blooded', 2349: 'full-bodied', 2350: 'full-time', 2351: 'fulla', 2352: 'fumes', 2353: 'fumigated', 2354: 'fun', 2355: "fun's", 2356: 'fund', 2357: 'funds', 2358: 'funeral', 2359: 'funniest', 2360: 'funny', 2361: 'furious', 2362: 'furiously', 2363: 'furniture', 2364: 'furry', 2365: 'further', 2366: 'fury', 2367: 'fuss', 2368: 'fustigate', 2369: 'fustigation', 2370: 'future', 2371: 'fuzzlepitch', 2372: 'fwooof', 2373: "g'ahead", 2374: "g'night", 2375: "g'on", 2376: 'ga', 2377: 'gabriel', 2378: 'gabriel:', 2379: 'gag', 2380: 'gags', 2381: 'gal', 2382: 'gallon', 2383: 'gals', 2384: 'gamble', 2385: 'gambler', 2386: 'game', 2387: "game's", 2388: 'games', 2389: "games'd", 2390: 'gang', 2391: 'gangrene', 2392: 'garbage', 2393: 'gardens', 2394: 'gargoyle', 2395: 'gargoyles', 2396: 'gary:', 2397: 'gary_chalmers:', 2398: 'gas', 2399: 'gasoline', 2400: 'gasp', 2401: 'gasps', 2402: 'gator', 2403: 'gator:', 2404: 'gave', 2405: 'gay', 2406: 'gayer', 2407: 'gear-head', 2408: 'gee', 2409: 'gees', 2410: 'geez', 2411: 'gel', 2412: 'general', 2413: 'generally', 2414: 'generosity', 2415: 'generous', 2416: 'generously', 2417: 'genius', 2418: 'gentle', 2419: "gentleman's", 2420: 'gentleman:', 2421: 'gentlemen', 2422: 'gentles', 2423: 'gently', 2424: 'genuinely', 2425: 'george', 2426: 'german', 2427: 'germans', 2428: 'germany', 2429: 'germs', 2430: 'gestated', 2431: 'gesture', 2432: 'get', 2433: 'getaway', 2434: 'getcha', 2435: 'gets', 2436: "gettin'", 2437: 'getting', 2438: "getting'", 2439: 'getup', 2440: 'geyser', 2441: 'geysir', 2442: 'gheet', 2443: 'ghouls', 2444: 'giant', 2445: 'gibson', 2446: 'gift', 2447: 'gift:', 2448: 'gifts', 2449: 'gig', 2450: 'giggle', 2451: 'giggles', 2452: 'gil_gunderson:', 2453: 'gimme', 2454: 'gimmick', 2455: 'gimmicks', 2456: 'gin', 2457: 'gin-slingers', 2458: 'ginger', 2459: 'girl', 2460: 'girl-bart', 2461: 'girlfriend', 2462: 'girls', 2463: 'give', 2464: 'given', 2465: 'gives', 2466: 'giving', 2467: 'glad', 2468: 'glamour', 2469: 'glass', 2470: 'glasses', 2471: 'glee', 2472: 'glen', 2473: 'glen:', 2474: 'glitterati', 2475: 'glitz', 2476: 'gloop', 2477: 'glorious', 2478: 'glove', 2479: 'glowers', 2480: 'glum', 2481: 'glummy', 2482: 'gluten', 2483: 'glyco-load', 2484: 'go', 2485: 'go-near-', 2486: 'goal', 2487: 'goblins', 2488: 'god', 2489: 'goes', 2490: "goin'", 2491: 'going', 2492: 'gol-dangit', 2493: 'gold', 2494: 'goldarnit', 2495: 'golden', 2496: 'golf', 2497: 'gone', 2498: 'gonna', 2499: 'goo', 2500: 'good', 2501: 'good-looking', 2502: 'goodbye', 2503: 'goodnight', 2504: 'goods', 2505: 'goodwill', 2506: 'gordon', 2507: 'gore', 2508: 'gorgeous', 2509: 'gosh', 2510: 'gossipy', 2511: 'got', 2512: 'gotcha', 2513: 'gotta', 2514: 'gotten', 2515: 'government', 2516: 'gr-aargh', 2517: 'grab', 2518: 'grabbing', 2519: 'grabs', 2520: 'grace', 2521: 'grade', 2522: 'grain', 2523: 'grains', 2524: 'grammar', 2525: 'grammy', 2526: 'grammys', 2527: 'grampa', 2528: 'grampa_simpson:', 2529: 'grand', 2530: 'grandiose', 2531: 'grandkids', 2532: 'grandmother', 2533: "grandmother's", 2534: 'grandé', 2535: 'granted', 2536: 'grants', 2537: 'grateful', 2538: 'grave', 2539: 'graves', 2540: 'graveyard', 2541: 'grease', 2542: 'great', 2543: 'greatest', 2544: 'greatly', 2545: 'greedy', 2546: 'greetings', 2547: 'gregor', 2548: 'grenky', 2549: 'grey', 2550: 'greystash', 2551: 'grienke', 2552: 'grieving', 2553: 'griffith', 2554: 'grim', 2555: 'grimly', 2556: 'grin', 2557: 'grinch', 2558: 'grind', 2559: 'groan', 2560: 'groans', 2561: 'grocery', 2562: 'groin', 2563: 'grope', 2564: 'ground', 2565: 'group', 2566: 'groveling', 2567: 'grow', 2568: 'growing', 2569: 'grrrreetings', 2570: 'grub', 2571: 'grubby', 2572: 'grudgingly', 2573: 'gruesome', 2574: 'gruff', 2575: 'grumbling', 2576: 'grumpy', 2577: 'grunt', 2578: 'grunts', 2579: 'guard', 2580: 'guess', 2581: 'guessing', 2582: 'guest', 2583: 'guff', 2584: 'guide', 2585: 'guilt', 2586: 'guiltily', 2587: 'guinea', 2588: 'gulliver_dark:', 2589: 'gulps', 2590: 'gum', 2591: 'gumbel', 2592: 'gumbo', 2593: 'gums', 2594: 'gun', 2595: 'gunk', 2596: 'guns', 2597: 'gunter', 2598: 'gunter:', 2599: 'gus', 2600: 'gut', 2601: 'gutenberg', 2602: 'guts', 2603: 'guttural', 2604: 'guy', 2605: "guy's", 2606: 'guys', 2607: 'guzzles', 2608: 'h', 2609: 'ha', 2610: 'ha-ha', 2611: 'habit', 2612: 'habitrail', 2613: 'had', 2614: "hadn't", 2615: 'hafta', 2616: 'hah', 2617: 'haikus', 2618: 'hail', 2619: 'hair', 2620: 'haircuts', 2621: 'hairs', 2622: 'haiti', 2623: 'half', 2624: 'half-back', 2625: 'half-beer', 2626: 'half-day', 2627: 'halfway', 2628: 'hall', 2629: 'halloween', 2630: 'halvsies', 2631: 'hammer', 2632: 'hammock', 2633: 'hammy', 2634: 'hampstead-on-cecil-cecil', 2635: 'hand', 2636: 'handed', 2637: 'handing', 2638: 'handle', 2639: 'handler', 2640: 'handling', 2641: 'handoff', 2642: 'hands', 2643: 'handshake', 2644: 'handsome', 2645: 'handwriting', 2646: "handwriting's", 2647: 'hang', 2648: "hangin'", 2649: 'hanging', 2650: 'hangout', 2651: 'hangover', 2652: 'hangs', 2653: 'hanh', 2654: 'hank_williams_jr', 2655: 'hans:', 2656: 'haplessly', 2657: 'happen', 2658: 'happened', 2659: 'happens', 2660: 'happier', 2661: 'happily', 2662: 'happily:', 2663: 'happiness', 2664: 'happy', 2665: 'har', 2666: 'hard', 2667: 'harder', 2668: 'hardhat', 2669: 'hardwood', 2670: 'hardy', 2671: 'hare-brained', 2672: 'harm', 2673: 'harmony', 2674: 'harrowing', 2675: 'harv', 2676: 'harv:', 2677: 'harvard', 2678: 'harvesting', 2679: 'harvey', 2680: 'has', 2681: "hasn't", 2682: 'hat', 2683: 'hate', 2684: 'hate-hugs', 2685: 'hated', 2686: 'hateful', 2687: 'hates', 2688: 'hats', 2689: 'have', 2690: "haven't", 2691: "havin'", 2692: 'having', 2693: 'haw', 2694: 'hawaii', 2695: "hawkin'", 2696: 'hawking:', 2697: 'haws', 2698: 'he', 2699: "he'd", 2700: "he'll", 2701: "he's", 2702: 'head', 2703: 'head-gunk', 2704: 'headhunters', 2705: 'heading', 2706: 'heads', 2707: 'heals', 2708: 'health', 2709: 'health_inspector:', 2710: 'healthier', 2711: 'hear', 2712: 'heard', 2713: 'hearing', 2714: 'hears', 2715: 'hearse', 2716: 'heart', 2717: 'heart-broken', 2718: 'heartily', 2719: 'heartless', 2720: 'hearts', 2721: "heat's", 2722: 'heather', 2723: 'heatherton', 2724: 'heave-ho', 2725: 'heaven', 2726: 'heavens', 2727: 'heaving', 2728: 'heavyset', 2729: 'heavyweight', 2730: 'heck', 2731: 'heh', 2732: 'heh-heh', 2733: 'held', 2734: 'helen', 2735: 'helicopter', 2736: 'heliotrope', 2737: 'hell', 2738: "hell's", 2739: 'hellhole', 2740: 'helllp', 2741: 'hello', 2742: 'help', 2743: 'helped', 2744: 'helpful', 2745: 'helping', 2746: 'helpless', 2747: 'helps', 2748: 'hemoglobin', 2749: 'hemorrhage-amundo', 2750: 'hems', 2751: 'henry', 2752: 'her', 2753: 'here', 2754: "here's", 2755: 'here-here-here', 2756: 'hero', 2757: 'hero-phobia', 2758: 'heroism', 2759: 'hers', 2760: 'herself', 2761: 'hexa-', 2762: 'hey', 2763: 'hi', 2764: 'hibachi', 2765: 'hibbert', 2766: 'hidden', 2767: 'hide', 2768: 'hideous', 2769: 'hiding', 2770: 'high', 2771: 'high-definition', 2772: "high-falutin'", 2773: 'highball', 2774: 'higher', 2775: 'highest', 2776: 'highway', 2777: 'hike', 2778: 'hilarious', 2779: 'hillary', 2780: 'hillbillies', 2781: 'hilton', 2782: 'him', 2783: 'himself', 2784: 'hippies', 2785: 'hired', 2786: 'hiring', 2787: 'his', 2788: 'hispanic_crowd:', 2789: 'history', 2790: 'hit', 2791: 'hitchhike', 2792: 'hitler', 2793: 'hits', 2794: 'hiya', 2795: 'hm', 2796: 'hmf', 2797: 'hmm', 2798: 'hmmm', 2799: 'hmmmm', 2800: 'ho', 2801: 'ho-la', 2802: 'ho-ly', 2803: 'hoagie', 2804: 'hoax', 2805: 'hobo', 2806: "hobo's", 2807: 'hockey-fight', 2808: 'hold', 2809: 'holding', 2810: 'holds', 2811: 'hole', 2812: "hole'", 2813: 'holiday', 2814: 'holidays', 2815: 'hollowed-out', 2816: 'hollye', 2817: 'hollywood', 2818: 'holy', 2819: 'home', 2820: 'homeland', 2821: 'homeless', 2822: 'homer', 2823: "homer'll", 2824: "homer's", 2825: "homer's_brain:", 2826: 'homer_', 2827: 'homer_doubles:', 2828: 'homer_simpson:', 2829: 'homers', 2830: 'homesick', 2831: 'homie', 2832: 'homunculus', 2833: 'honest', 2834: 'honey', 2835: 'honeys', 2836: 'honor', 2837: 'honored', 2838: 'hoo', 2839: 'hooch', 2840: 'hook', 2841: 'hooked', 2842: 'hooky', 2843: 'hooray', 2844: 'hooters', 2845: 'hootie', 2846: 'hop', 2847: 'hope', 2848: 'hoped', 2849: 'hopeful', 2850: 'hoping', 2851: 'hops', 2852: 'horns', 2853: 'horribilis', 2854: 'horrible', 2855: 'horrified', 2856: 'horror', 2857: 'horrors', 2858: 'horses', 2859: 'hose', 2860: 'hospital', 2861: 'host', 2862: 'hostages', 2863: 'hostile', 2864: 'hosting', 2865: 'hot', 2866: 'hot-rod', 2867: 'hotel', 2868: 'hotenhoffer', 2869: 'hotline', 2870: 'hottest', 2871: 'hounds', 2872: 'hour', 2873: 'hourly', 2874: 'hours', 2875: 'house', 2876: 'housewife', 2877: 'housework', 2878: 'housing', 2879: 'how', 2880: "how'd", 2881: "how're", 2882: "how's", 2883: 'however', 2884: 'howya', 2885: 'hub', 2886: 'hubub', 2887: 'huddle', 2888: 'hug', 2889: 'huge', 2890: 'huggenkiss', 2891: 'hugh', 2892: 'hugh:', 2893: 'huh', 2894: 'huhza', 2895: 'human', 2896: 'humanity', 2897: 'humiliation', 2898: 'hundred', 2899: 'hundreds', 2900: 'hunger', 2901: 'hungry', 2902: 'hunka', 2903: 'hunky', 2904: 'hunter', 2905: 'hunting', 2906: 'hurry', 2907: 'hurt', 2908: 'hurting', 2909: 'hurts', 2910: 'husband', 2911: 'hushed', 2912: 'hustle', 2913: 'hyahh', 2914: 'hydrant', 2915: 'hygienically', 2916: 'hyper-credits', 2917: 'i', 2918: "i'd", 2919: "i'd'a", 2920: "i'll", 2921: "i'm", 2922: "i'm-so-stupid", 2923: "i'unno", 2924: "i've", 2925: 'i-i', 2926: "i-i'll", 2927: "i-i'm", 2928: 'i-i-i', 2929: 'i/you', 2930: 'ice', 2931: 'icelandic', 2932: 'icy', 2933: 'iddilies', 2934: 'idea', 2935: "idea's", 2936: 'ideal', 2937: 'idealistic', 2938: 'ideas', 2939: 'idioms', 2940: 'idiot', 2941: 'idiots', 2942: 'if', 2943: 'ignorance', 2944: 'ignorant', 2945: 'ignoring', 2946: 'ihop', 2947: 'illegal', 2948: 'illegally', 2949: 'illustrates', 2950: 'image', 2951: 'imaginary', 2952: 'imagine', 2953: 'imitating', 2954: 'immiggants', 2955: 'impatient', 2956: 'impeach', 2957: 'impending', 2958: 'important', 2959: 'imported-sounding', 2960: 'impress', 2961: 'impressed', 2962: 'improv', 2963: 'improved', 2964: 'in', 2965: 'in-ground', 2966: 'in-in-in', 2967: 'inanely', 2968: 'incapable', 2969: 'incarcerated', 2970: 'inches', 2971: 'inclination', 2972: 'including', 2973: 'incognito', 2974: 'increased', 2975: 'increasingly', 2976: 'incredible', 2977: 'incredulous', 2978: 'incriminating', 2979: 'indecipherable', 2980: 'indeed', 2981: 'indeedy', 2982: 'index', 2983: 'indicates', 2984: 'indifference', 2985: 'indifferent', 2986: 'indigenous', 2987: 'indignant', 2988: 'industry', 2989: "industry's", 2990: 'ineffective', 2991: 'inexorable', 2992: 'infatuation', 2993: 'infestation', 2994: 'infiltrate', 2995: 'inflated', 2996: 'influence', 2997: 'infor', 2998: 'informant', 2999: 'information', 3000: 'ing', 3001: 'ingested', 3002: 'ingrates', 3003: 'ingredient', 3004: 'inherent', 3005: 'initially', 3006: 'injury', 3007: 'inning', 3008: 'innocence', 3009: 'innocent', 3010: 'innocuous', 3011: 'inquiries', 3012: 'insecure', 3013: 'insensitive', 3014: 'inserted', 3015: 'inserts', 3016: 'inside', 3017: 'insightful', 3018: 'insist', 3019: 'inspection', 3020: 'inspector', 3021: 'inspire', 3022: 'inspired', 3023: 'inspiring', 3024: 'installed', 3025: 'instantly', 3026: 'instead', 3027: 'instrument', 3028: 'insulin', 3029: 'insulted', 3030: 'insults', 3031: 'insurance', 3032: 'insured', 3033: 'intakes', 3034: 'intelligent', 3035: 'intense', 3036: 'intention', 3037: 'interested', 3038: 'interesting', 3039: 'international', 3040: 'internet', 3041: 'interrupting', 3042: 'intervention', 3043: 'intimacy', 3044: 'into', 3045: 'intoxicants', 3046: 'intoxicated', 3047: 'intrigued', 3048: 'intriguing', 3049: 'introduce', 3050: 'intruding', 3051: 'invented', 3052: 'investigating', 3053: 'investment', 3054: 'investor', 3055: 'invisible', 3056: 'invite', 3057: 'invited', 3058: 'involved', 3059: 'involving', 3060: 'invulnerable', 3061: 'iran', 3062: 'iranian', 3063: 'ireland', 3064: 'irish', 3065: 'irishman', 3066: 'ironed', 3067: 'ironic', 3068: 'irrelevant', 3069: 'irs', 3070: 'is', 3071: 'is:', 3072: 'island', 3073: 'isle', 3074: "isn't", 3075: 'isotopes', 3076: 'issues', 3077: 'issuing', 3078: 'it', 3079: "it'd", 3080: "it'll", 3081: "it's", 3082: 'it:', 3083: 'italian', 3084: 'itchy', 3085: 'item', 3086: 'items', 3087: 'its', 3088: 'itself', 3089: 'ivana', 3090: 'ivanna', 3091: 'ivory', 3092: 'ivy-covered', 3093: 'j', 3094: 'jack', 3095: 'jack_larson:', 3096: 'jackass', 3097: "jackpot's", 3098: 'jackpot-thief', 3099: 'jacks', 3100: 'jackson', 3101: 'jacksons', 3102: 'jacques', 3103: 'jacques:', 3104: 'jaegermeister', 3105: 'jail', 3106: 'jailbird', 3107: 'jam', 3108: 'jamaican', 3109: 'james', 3110: 'jams', 3111: 'jane', 3112: 'janette', 3113: 'japanese', 3114: 'jar', 3115: 'jasper_beardly:', 3116: 'jay', 3117: 'jay:', 3118: 'jay_leno:', 3119: 'jazz', 3120: 'je', 3121: 'jebediah', 3122: 'jeers', 3123: 'jeez', 3124: 'jeff', 3125: 'jeff_gordon:', 3126: 'jelly', 3127: 'jer', 3128: 'jerk', 3129: 'jerk-ass', 3130: 'jerking', 3131: 'jerks', 3132: 'jerky', 3133: 'jernt', 3134: 'jerry', 3135: 'jesus', 3136: 'jeter', 3137: 'jets', 3138: 'jewelry', 3139: 'jewish', 3140: 'jig', 3141: 'jigger', 3142: "jimbo's_dad:", 3143: 'jimmy', 3144: 'job', 3145: 'jobless', 3146: 'jobs', 3147: 'jockey', 3148: 'joe', 3149: 'joey', 3150: 'joey_kramer:', 3151: 'jogging', 3152: 'john', 3153: 'johnny', 3154: 'johnny_carson:', 3155: 'join', 3156: 'joined', 3157: 'joining', 3158: 'joint', 3159: 'joke', 3160: 'jokes', 3161: 'joking', 3162: 'jolly', 3163: 'journey', 3164: 'jovial', 3165: 'joy', 3166: 'juan', 3167: 'jubilant', 3168: 'jubilation', 3169: 'judge', 3170: 'judge_snyder:', 3171: 'judges', 3172: 'judgments', 3173: 'juice', 3174: 'juke', 3175: 'jukebox', 3176: 'jukebox_record:', 3177: 'julep', 3178: 'julienne', 3179: 'jump', 3180: 'jumping', 3181: 'jumps', 3182: 'junebug', 3183: 'junior', 3184: 'junkyard', 3185: 'jury', 3186: 'just', 3187: 'justice', 3188: 'justify', 3189: 'jägermeister', 3190: 'k', 3191: 'k-zug', 3192: 'kadlubowski', 3193: 'kahlua', 3194: 'kako:', 3195: 'kang:', 3196: 'kansas', 3197: 'karaoke', 3198: 'karaoke_machine:', 3199: 'kay', 3200: 'kazoo', 3201: "kearney's_dad:", 3202: 'kearney_zzyzwicz:', 3203: 'keep', 3204: 'keeping', 3205: 'keeps', 3206: 'kegs', 3207: 'kemi', 3208: 'kemi:', 3209: 'ken:', 3210: 'kennedy', 3211: 'kenny', 3212: 'kent', 3213: 'kent_brockman:', 3214: 'kentucky', 3215: 'kept', 3216: 'kermit', 3217: 'key', 3218: 'keys', 3219: 'kick', 3220: 'kick-ass', 3221: 'kicked', 3222: 'kickoff', 3223: 'kicks', 3224: 'kid', 3225: "kid's", 3226: "kiddin'", 3227: 'kidding', 3228: 'kidnaps', 3229: 'kidney', 3230: 'kidneys', 3231: 'kids', 3232: "kids'", 3233: 'kill', 3234: 'killarney', 3235: 'killed', 3236: 'killer', 3237: 'killing', 3238: 'killjoy', 3239: 'kills', 3240: 'kim_basinger:', 3241: 'kind', 3242: 'kinda', 3243: 'kinderhook', 3244: 'kindly', 3245: 'kinds', 3246: 'king', 3247: 'kings', 3248: 'kirk', 3249: 'kirk_van_houten:', 3250: 'kirk_voice_milhouse:', 3251: 'kiss', 3252: 'kissed', 3253: 'kisser', 3254: 'kisses', 3255: 'kissing', 3256: 'kissingher', 3257: 'kitchen', 3258: 'kl5-4796', 3259: 'klingon', 3260: 'klown', 3261: 'kneeling', 3262: 'knees', 3263: 'knew', 3264: 'knife', 3265: 'knit', 3266: 'knives', 3267: 'knock', 3268: 'knock-up', 3269: 'knocked', 3270: "knockin'", 3271: 'knocks', 3272: 'know', 3273: 'knowing', 3274: 'knowingly', 3275: 'knowledge', 3276: 'known', 3277: 'knows', 3278: 'knuckle-dragging', 3279: 'knuckles', 3280: 'kodos:', 3281: 'koholic', 3282: 'koi', 3283: 'koji', 3284: 'kool', 3285: 'korea', 3286: 'krabappel', 3287: 'kramer', 3288: 'krusty', 3289: 'krusty_the_clown:', 3290: 'kucinich', 3291: 'kwik-e-mart', 3292: 'kyoto', 3293: 'l', 3294: 'la', 3295: 'label', 3296: 'labels', 3297: 'labor', 3298: 'lachrymose', 3299: 'ladder', 3300: 'ladies', 3301: "ladies'", 3302: 'lady', 3303: "lady's", 3304: 'lady-free', 3305: 'lady_duff:', 3306: 'lager', 3307: 'laid', 3308: 'lainie:', 3309: 'lame', 3310: 'lance', 3311: 'land', 3312: 'landfill', 3313: 'landlord', 3314: 'lanes', 3315: 'laney', 3316: 'laney_fontaine:', 3317: 'language', 3318: 'languages', 3319: 'lap', 3320: 'laramie', 3321: 'lard', 3322: 'large', 3323: 'larry', 3324: "larry's", 3325: 'larry:', 3326: 'larson', 3327: 'las', 3328: 'last', 3329: 'late', 3330: 'lately', 3331: 'later', 3332: 'latin', 3333: 'latour', 3334: 'laugh', 3335: 'laughing', 3336: 'laughs', 3337: 'laughter', 3338: 'launch', 3339: 'law', 3340: 'law-abiding', 3341: 'laws', 3342: 'lawyer', 3343: 'lay', 3344: 'layer', 3345: 'lazy', 3346: 'lead', 3347: 'leak', 3348: 'leans', 3349: 'lear', 3350: 'learn', 3351: 'learned', 3352: 'lease', 3353: 'least', 3354: 'leathery', 3355: 'leave', 3356: "leavin'", 3357: 'leaving', 3358: 'lecture', 3359: 'led', 3360: 'lee', 3361: 'left', 3362: 'leftover', 3363: "lefty's", 3364: 'leg', 3365: 'legal', 3366: 'legally', 3367: 'legend', 3368: 'legoland', 3369: 'legs', 3370: 'legs:', 3371: 'lemme', 3372: 'lemonade', 3373: 'len-ny', 3374: 'lend', 3375: 'lenford', 3376: 'lenny', 3377: "lenny's", 3378: 'lenny:', 3379: 'lenny_leonard:', 3380: 'lennyy', 3381: 'leno', 3382: 'lenses', 3383: 'leonard', 3384: 'leprechaun', 3385: 'less', 3386: 'lessee', 3387: 'lessons', 3388: 'let', 3389: "let's", 3390: 'letter', 3391: 'letters', 3392: 'level', 3393: 'lewis', 3394: 'liability', 3395: 'liable', 3396: 'liar', 3397: 'lib', 3398: "liberty's", 3399: 'libido', 3400: 'libraries', 3401: 'license', 3402: 'lie', 3403: 'lied', 3404: 'life', 3405: "life's", 3406: 'life-extension', 3407: 'life-partner', 3408: 'life-sized', 3409: 'life-threatening', 3410: 'life:', 3411: 'lifestyle', 3412: 'lifetime', 3413: 'lift', 3414: 'lifters', 3415: "liftin'", 3416: 'lifts', 3417: 'light', 3418: 'lighten', 3419: 'lighter', 3420: 'lighting', 3421: 'lights', 3422: 'like', 3423: 'likes', 3424: 'lily-pond', 3425: 'limber', 3426: 'lime', 3427: 'limericks', 3428: 'limited', 3429: 'limits', 3430: 'lincoln', 3431: 'linda', 3432: 'linda_ronstadt:', 3433: 'lindsay', 3434: 'lindsay_naegle:', 3435: 'line', 3436: 'ling', 3437: 'lingus', 3438: "linin'", 3439: 'links', 3440: 'lipo', 3441: 'lips', 3442: 'liquor', 3443: 'lis', 3444: 'lisa', 3445: "lisa's", 3446: 'lisa_simpson:', 3447: 'lise:', 3448: 'liser', 3449: 'list', 3450: 'listen', 3451: 'listened', 3452: "listenin'", 3453: 'listening', 3454: 'listens', 3455: 'lists', 3456: 'literary', 3457: 'literature', 3458: 'little', 3459: 'little_hibbert_girl:', 3460: 'little_man:', 3461: 'live', 3462: 'liven', 3463: 'liver', 3464: 'lives', 3465: "livin'", 3466: 'living', 3467: 'lizard', 3468: 'lloyd', 3469: 'lloyd:', 3470: 'load', 3471: 'loaded', 3472: 'loafers', 3473: 'loan', 3474: 'loathe', 3475: 'loboto-moth', 3476: 'lobster', 3477: 'lobster-based', 3478: 'lobster-politans', 3479: 'local', 3480: 'located', 3481: 'lock', 3482: 'locked', 3483: 'locklear', 3484: 'lodge', 3485: 'lofty', 3486: 'log', 3487: 'logos', 3488: 'lone', 3489: 'loneliness', 3490: 'lonely', 3491: 'long', 3492: 'longer', 3493: 'longest', 3494: 'look', 3495: 'lookalike', 3496: 'lookalike:', 3497: 'lookalikes', 3498: 'looked', 3499: "lookin'", 3500: 'looking', 3501: 'looks', 3502: 'looooooooooooooooooong', 3503: 'looser', 3504: 'looting', 3505: 'lord', 3506: 'lorre', 3507: 'los', 3508: 'lose', 3509: 'loser', 3510: 'losers', 3511: 'losing', 3512: 'loss', 3513: 'lost', 3514: 'lot', 3515: 'lots', 3516: 'lotsa', 3517: 'lotta', 3518: 'lottery', 3519: 'lou', 3520: 'lou:', 3521: 'loud', 3522: 'louder', 3523: 'loudly', 3524: 'louie:', 3525: 'louisiana', 3526: 'louse', 3527: 'lousy', 3528: 'love', 3529: 'love-matic', 3530: 'loved', 3531: 'lovejoy', 3532: 'lovelorn', 3533: 'lovely', 3534: 'lover', 3535: 'lovers', 3536: "lovers'", 3537: 'loves', 3538: 'low', 3539: 'low-blow', 3540: 'low-life', 3541: 'lowering', 3542: 'lowers', 3543: 'lowest', 3544: 'loyal', 3545: 'lucinda', 3546: 'lucius', 3547: 'lucius:', 3548: 'luck', 3549: 'luckiest', 3550: 'luckily', 3551: 'lucky', 3552: 'lugs', 3553: 'lump', 3554: 'lumpa', 3555: 'lungs', 3556: 'lurks', 3557: 'lurleen', 3558: 'lurleen_lumpkin:', 3559: 'lush', 3560: 'lushmore', 3561: 'luv', 3562: 'luxury', 3563: 'lying', 3564: 'm', 3565: 'ma', 3566: "ma'am", 3567: "ma's", 3568: 'mabel', 3569: 'mac-who', 3570: 'macaulay', 3571: 'macbeth', 3572: 'macgregor', 3573: 'machine', 3574: 'macho', 3575: 'mad', 3576: 'made', 3577: 'madison', 3578: 'madman', 3579: 'madonna', 3580: 'mafia', 3581: 'magazine', 3582: 'maggie', 3583: "maggie's", 3584: 'magic', 3585: 'magnanimous', 3586: 'mags', 3587: 'mahatma', 3588: 'maher', 3589: 'maiden', 3590: 'mail', 3591: 'mailbox', 3592: 'maintenance', 3593: 'maitre', 3594: 'majesty', 3595: 'majority', 3596: 'make', 3597: 'make:', 3598: 'makes', 3599: "makin'", 3600: 'making', 3601: 'malabar', 3602: 'male_inspector:', 3603: 'male_singers:', 3604: 'malfeasance', 3605: 'malibu', 3606: 'mall', 3607: 'malted', 3608: 'maman', 3609: 'mamma', 3610: 'man', 3611: "man'd", 3612: "man's", 3613: "man's_voice:", 3614: 'man:', 3615: 'man_at_bar:', 3616: 'man_with_crazy_beard:', 3617: 'man_with_tree_hat:', 3618: 'manage', 3619: 'managed', 3620: 'manager', 3621: 'managing', 3622: 'manatee', 3623: 'manboobs', 3624: 'manchego', 3625: 'manfred', 3626: 'manipulation', 3627: 'manjula', 3628: 'manjula_nahasapeemapetilon:', 3629: 'mansions', 3630: 'manuel', 3631: 'many', 3632: 'march', 3633: 'marched', 3634: 'margarita', 3635: 'marge', 3636: "marge's", 3637: 'marge_simpson:', 3638: 'marguerite:', 3639: 'mariah', 3640: 'marjorie', 3641: 'market', 3642: 'marmaduke', 3643: 'marquee', 3644: 'marriage', 3645: 'married', 3646: 'marry', 3647: 'marshmallow', 3648: 'martini', 3649: 'marvelous', 3650: 'marvin', 3651: 'mary', 3652: 'masks', 3653: 'mason', 3654: 'massachusetts', 3655: 'massage', 3656: 'massive', 3657: 'match', 3658: 'mate', 3659: 'mater', 3660: 'material', 3661: 'mathis', 3662: 'matter', 3663: 'matter-of-fact', 3664: 'maude', 3665: 'maxed', 3666: 'maximum', 3667: 'may', 3668: 'maya', 3669: 'maya:', 3670: 'mayan', 3671: 'maybe', 3672: 'mayor', 3673: 'mayor_joe_quimby:', 3674: 'mcbain', 3675: 'mccall', 3676: 'mccarthy', 3677: 'mcclure', 3678: 'mckinley', 3679: 'mcstagger', 3680: "mcstagger's", 3681: 'me', 3682: 'meal', 3683: 'meals', 3684: 'mean', 3685: "meanin'", 3686: 'meaning', 3687: 'meaningful', 3688: 'meaningfully', 3689: 'meaningless', 3690: 'means', 3691: 'meant', 3692: 'meanwhile', 3693: 'measure', 3694: 'measurements', 3695: 'meatpies', 3696: "mecca's", 3697: 'mechanical', 3698: 'media', 3699: 'medical', 3700: 'medicine', 3701: 'medieval', 3702: 'meditative', 3703: 'mediterranean', 3704: 'meet', 3705: 'meeting', 3706: 'mel', 3707: 'mellow', 3708: 'melodramatic', 3709: 'memories', 3710: 'memory', 3711: 'men', 3712: "men's", 3713: 'men:', 3714: 'menace', 3715: 'menacing', 3716: 'menlo', 3717: 'mention', 3718: 'merchants', 3719: 'mess', 3720: 'message', 3721: "messin'", 3722: 'met', 3723: 'metal', 3724: 'meteor', 3725: 'methinks', 3726: 'mexican', 3727: 'mexican_duffman:', 3728: 'mexicans', 3729: 'meyerhof', 3730: 'mic', 3731: 'mice', 3732: 'michael', 3733: 'michael_stipe:', 3734: 'michelin', 3735: 'mickey', 3736: 'microbrew', 3737: 'micronesian', 3738: 'microphone', 3739: 'microwave', 3740: 'mid-conversation', 3741: 'mid-seventies', 3742: 'middle', 3743: 'midge', 3744: 'midge:', 3745: 'midnight', 3746: 'might', 3747: 'mike', 3748: 'mike_mills:', 3749: 'mild', 3750: 'miles', 3751: 'milhouse', 3752: 'milhouse_van_houten:', 3753: 'milhouses', 3754: 'military', 3755: 'militia', 3756: 'milk', 3757: 'milks', 3758: 'mill', 3759: 'million', 3760: 'mimes', 3761: 'mind', 3762: 'mind-numbing', 3763: 'mindless', 3764: 'mine', 3765: 'mines', 3766: 'mini-beret', 3767: 'mini-dumpsters', 3768: 'minimum', 3769: 'minister', 3770: 'minors', 3771: 'mint', 3772: 'minus', 3773: 'minute', 3774: 'minutes', 3775: 'miracle', 3776: 'mirror', 3777: 'mirthless', 3778: 'mis-statement', 3779: 'misconstrue', 3780: 'miserable', 3781: 'misfire', 3782: 'miss', 3783: 'miss_lois_pennycandy:', 3784: 'missed', 3785: 'missing', 3786: 'mission', 3787: 'mistake', 3788: 'mistakes', 3789: 'mister', 3790: 'mistresses', 3791: 'mither', 3792: 'mitts', 3793: 'mix', 3794: 'mixed', 3795: 'mm', 3796: 'mm-hmm', 3797: 'mmm', 3798: 'mmm-hmm', 3799: 'mmmm', 3800: 'mmmmm', 3801: "mo'", 3802: 'moan', 3803: 'moans', 3804: 'mob', 3805: 'mobile', 3806: 'mock', 3807: 'mock-up', 3808: 'mocking', 3809: 'model', 3810: 'modern', 3811: 'modest', 3812: 'modestly', 3813: 'moe', 3814: "moe's", 3815: "moe's_thoughts:", 3816: 'moe-clone', 3817: 'moe-clone:', 3818: 'moe-heads', 3819: 'moe-lennium', 3820: 'moe-near-now', 3821: 'moe-ron', 3822: 'moe_recording:', 3823: 'moe_szyslak:', 3824: 'moesy', 3825: 'mole', 3826: 'mom', 3827: 'moment', 3828: 'moments', 3829: 'mommy', 3830: 'mona_simpson:', 3831: 'monday', 3832: 'money', 3833: "money's", 3834: 'monkey', 3835: 'monkeyshines', 3836: 'monorails', 3837: 'monroe', 3838: "monroe's", 3839: 'monster', 3840: 'month', 3841: 'months', 3842: 'montrer', 3843: 'moolah-stealing', 3844: 'moon', 3845: 'moon-bounce', 3846: 'moonlight', 3847: 'moonnnnnnnn', 3848: 'moonshine', 3849: 'mop', 3850: "mopin'", 3851: 'more', 3852: 'morlocks', 3853: 'morning', 3854: 'morning-after', 3855: 'moron', 3856: 'morose', 3857: 'mortal', 3858: 'mortgage', 3859: 'most', 3860: 'most:', 3861: 'mostly', 3862: 'mostrar', 3863: 'motel', 3864: 'mother', 3865: "mother's", 3866: 'motor', 3867: 'motorcycle', 3868: 'motto', 3869: 'mount', 3870: 'mountain', 3871: 'mouse', 3872: 'moustache', 3873: 'mouth', 3874: 'mouths', 3875: 'move', 3876: 'moved', 3877: 'movement', 3878: 'movie', 3879: 'movies', 3880: 'moving', 3881: 'moxie', 3882: 'mozzarella', 3883: 'mr', 3884: 'mrs', 3885: 'mt', 3886: "mtv's", 3887: 'much', 3888: 'mudflap', 3889: 'muertos', 3890: 'muffled', 3891: 'mug', 3892: 'mugs', 3893: 'muhammad', 3894: 'mulder', 3895: 'mull', 3896: 'multi-national', 3897: 'multi-purpose', 3898: 'multiple', 3899: 'mumble', 3900: 'mumbling', 3901: 'municipal', 3902: 'mural', 3903: 'murdered', 3904: 'murderously', 3905: 'murdoch', 3906: 'murmur', 3907: 'murmurs', 3908: "murphy's", 3909: 'muscle', 3910: 'muscles', 3911: 'museum', 3912: 'mushy', 3913: 'music', 3914: 'musical', 3915: 'musketeers', 3916: 'muslim', 3917: 'musses', 3918: 'must', 3919: "must've", 3920: 'musta', 3921: 'mustard', 3922: 'muttering', 3923: 'my', 3924: 'my-y-y-y-y-y', 3925: 'myself', 3926: 'mystery', 3927: 'na', 3928: 'nachos', 3929: 'naegle', 3930: 'nagurski', 3931: 'nah', 3932: 'nahasapeemapetilon', 3933: 'nail', 3934: 'nailed', 3935: 'naively', 3936: 'naked', 3937: 'name', 3938: 'name:', 3939: 'named', 3940: 'nameless', 3941: 'names', 3942: 'nantucket', 3943: 'nap', 3944: 'napkins', 3945: 'nards', 3946: "narratin'", 3947: 'narrator:', 3948: 'nasa', 3949: 'nascar', 3950: 'nash', 3951: 'nasty', 3952: 'nation', 3953: 'natural', 3954: 'naturally', 3955: 'nature', 3956: 'natured', 3957: 'nauseous', 3958: 'naval', 3959: 'navy', 3960: 'nbc', 3961: 'ne', 3962: 'neanderthal', 3963: 'near', 3964: 'nearly', 3965: 'neat', 3966: "neat's-foot", 3967: 'necessary', 3968: 'neck', 3969: 'necklace', 3970: 'nectar', 3971: 'ned', 3972: 'ned_flanders:', 3973: 'need', 3974: 'needed', 3975: 'needs', 3976: 'needy', 3977: 'negative', 3978: 'neighbor', 3979: "neighbor's", 3980: 'neighboreeno', 3981: 'neighborhood', 3982: 'neighbors', 3983: 'neil_gaiman:', 3984: 'nein', 3985: 'neither', 3986: 'nelson', 3987: 'nelson_muntz:', 3988: 'nemo', 3989: 'neon', 3990: 'nerd', 3991: 'nerve', 3992: 'nervous', 3993: 'nervously', 3994: 'network', 3995: 'nevada', 3996: 'never', 3997: 'new', 3998: 'new_health_inspector:', 3999: 'newest', 4000: 'newly-published', 4001: 'news', 4002: 'newsies', 4003: 'newsletter', 4004: 'newspaper', 4005: 'newsweek', 4006: 'next', 4007: 'nfl_narrator:', 4008: 'nibble', 4009: 'nice', 4010: 'nicer', 4011: 'nick', 4012: "nick's", 4013: 'nickel', 4014: 'nickels', 4015: 'nigel_bakerbutcher:', 4016: 'nigeria', 4017: 'nigerian', 4018: 'night', 4019: 'night-crawlers', 4020: 'nightmare', 4021: 'nightmares', 4022: 'nine', 4023: 'nineteen', 4024: 'ninety-eight', 4025: 'ninety-nine', 4026: 'ninety-seven', 4027: 'ninety-six', 4028: 'ninth', 4029: 'nitwit', 4030: "nixon's", 4031: 'no', 4032: 'nobel', 4033: 'noble', 4034: 'nobody', 4035: 'nods', 4036: 'noggin', 4037: 'noise', 4038: 'noises', 4039: 'nominated', 4040: 'non-american', 4041: 'non-losers', 4042: 'nonchalant', 4043: 'nonchalantly', 4044: 'none', 4045: 'nonsense', 4046: 'nooo', 4047: 'noooooooooo', 4048: 'noose', 4049: 'noosey', 4050: 'nope', 4051: 'nor', 4052: 'nordiques', 4053: 'normal', 4054: 'normals', 4055: 'north', 4056: 'norway', 4057: 'nos', 4058: 'nose', 4059: 'not', 4060: 'notably', 4061: 'notch', 4062: "nothin'", 4063: "nothin's", 4064: 'nothing', 4065: 'notice', 4066: 'notices', 4067: 'noticing', 4068: 'notorious', 4069: 'novel', 4070: 'novelty', 4071: 'november', 4072: 'now', 4073: "now's", 4074: 'nuclear', 4075: 'nucular', 4076: 'nudge', 4077: 'nuked', 4078: 'number', 4079: "number's", 4080: 'numbers', 4081: 'numeral', 4082: 'nurse', 4083: 'nursemaid', 4084: 'nuts', 4085: 'não', 4086: 'o', 4087: "o'", 4088: "o'clock", 4089: "o'problem", 4090: "o'reilly", 4091: 'oak', 4092: 'obama', 4093: 'obese', 4094: 'oblivious', 4095: 'oblongata', 4096: 'obsessive-compulsive', 4097: 'obvious', 4098: 'occasion', 4099: 'occasional', 4100: 'occupancy', 4101: 'occupation', 4102: 'occupied', 4103: 'occurred', 4104: 'occurrence', 4105: 'occurs', 4106: 'ocean', 4107: 'octa-', 4108: 'odd', 4109: 'oddest', 4110: 'odor', 4111: 'of', 4112: 'off', 4113: 'offa', 4114: 'offended', 4115: 'offense', 4116: 'offensive', 4117: 'offer', 4118: 'office', 4119: 'officer', 4120: 'official', 4121: 'officials', 4122: 'offshoot', 4123: 'often', 4124: 'oh', 4125: 'oh-ho', 4126: 'oh-so-sophisticated', 4127: 'ohh', 4128: 'ohhhh', 4129: 'ohmygod', 4130: 'oil', 4131: 'oils', 4132: 'ointment', 4133: 'okay', 4134: "ol'", 4135: 'old', 4136: 'old-time', 4137: 'old_jewish_man:', 4138: 'older', 4139: 'olive', 4140: 'ollie', 4141: 'omigod', 4142: 'ominous', 4143: 'omit', 4144: 'on', 4145: 'onassis', 4146: 'once', 4147: 'one', 4148: "one's", 4149: 'one-hour', 4150: 'ones', 4151: 'onion', 4152: 'onions', 4153: 'online', 4154: 'only', 4155: 'ons', 4156: 'onto', 4157: 'oof', 4158: 'ooh', 4159: 'ooo', 4160: 'oooh', 4161: 'oooo', 4162: 'oopsie', 4163: 'op', 4164: 'open', 4165: 'open-casket', 4166: 'opening', 4167: 'opens', 4168: 'operation', 4169: 'opportunity', 4170: 'optimistic', 4171: 'option', 4172: 'options', 4173: 'or', 4174: 'order', 4175: 'ordered', 4176: 'orders', 4177: 'ore', 4178: 'organ', 4179: 'orgasmville', 4180: 'orifice', 4181: 'original', 4182: 'orphan', 4183: 'othello', 4184: 'other', 4185: "other's", 4186: 'other_book_club_member:', 4187: 'other_player:', 4188: "others'", 4189: 'otherwise', 4190: 'ought', 4191: 'oughta', 4192: 'oughtta', 4193: 'our', 4194: 'ourselves', 4195: 'out', 4196: 'outlive', 4197: 'outlook', 4198: 'outrageous', 4199: 'outs', 4200: 'outside', 4201: 'outstanding', 4202: 'outta', 4203: 'over', 4204: 'over-pronouncing', 4205: 'overflowing', 4206: 'overhearing', 4207: 'overstressed', 4208: 'overturned', 4209: 'ow', 4210: 'owe', 4211: 'owes', 4212: 'own', 4213: 'owned', 4214: 'owner', 4215: 'owns', 4216: 'oww', 4217: 'p', 4218: 'p-k', 4219: 'pack', 4220: 'package', 4221: 'packets', 4222: 'pad', 4223: 'padre', 4224: 'padres', 4225: 'page', 4226: 'pageant', 4227: 'pages', 4228: 'paid', 4229: 'pain', 4230: 'pained', 4231: 'painless', 4232: 'paint', 4233: 'painted', 4234: 'painting', 4235: 'paintings', 4236: 'paints', 4237: 'pair', 4238: 'pajamas', 4239: 'pal', 4240: 'pall', 4241: 'palm', 4242: 'palmerston', 4243: 'pancakes', 4244: 'panicked', 4245: 'panicky', 4246: 'panties', 4247: 'pantry', 4248: 'pants', 4249: 'pantsless', 4250: 'papa', 4251: 'paparazzo', 4252: 'paper', 4253: 'para', 4254: 'paramedic:', 4255: 'parasol', 4256: 'pardon', 4257: 'parenting', 4258: 'parents', 4259: 'paris', 4260: 'park', 4261: 'parked', 4262: 'parking', 4263: 'parrot', 4264: 'part', 4265: 'part-time', 4266: 'partially', 4267: 'partly', 4268: 'partner', 4269: 'partners', 4270: 'party', 4271: 'pas', 4272: 'pass', 4273: 'passed', 4274: 'passenger', 4275: 'passes', 4276: 'passion', 4277: 'passports', 4278: 'past', 4279: 'pasta', 4280: 'paste', 4281: 'patented', 4282: 'pathetic', 4283: 'patient', 4284: "patrick's", 4285: 'patriotic', 4286: 'patron_#1:', 4287: 'patron_#2:', 4288: 'patrons', 4289: 'patrons:', 4290: 'pats', 4291: 'patterns', 4292: 'patting', 4293: 'patty', 4294: 'patty_bouvier:', 4295: 'pause', 4296: 'pawed', 4297: 'pay', 4298: 'payback', 4299: 'payday', 4300: "payin'", 4301: 'paying', 4302: 'payments', 4303: 'pays', 4304: 'peabody', 4305: 'peace', 4306: 'peach', 4307: 'peaked', 4308: 'peanut', 4309: 'peanuts', 4310: 'pee', 4311: 'peeping', 4312: 'peeved', 4313: 'pen', 4314: 'penmanship', 4315: 'pennies', 4316: 'penny', 4317: 'people', 4318: "people's", 4319: 'pep', 4320: 'pepper', 4321: 'peppers', 4322: 'peppy', 4323: 'pepsi', 4324: 'pepto-bismol', 4325: 'per', 4326: 'percent', 4327: 'perch', 4328: 'perfect', 4329: 'perfected', 4330: 'perfume', 4331: 'perfunctory', 4332: 'perhaps', 4333: 'period', 4334: 'perking', 4335: 'permanent', 4336: 'permitting', 4337: 'pernt', 4338: 'perplexed', 4339: 'persia', 4340: 'person', 4341: 'personal', 4342: 'perverse', 4343: 'perverted', 4344: 'perón', 4345: 'peter', 4346: 'peter_buck:', 4347: 'pets', 4348: 'pews', 4349: 'pfft', 4350: 'pharmaceutical', 4351: 'phase', 4352: 'phasing', 4353: 'philip', 4354: 'philosophic', 4355: 'philosophical', 4356: 'phlegm', 4357: 'phone', 4358: "phone's", 4359: 'phony', 4360: 'photo', 4361: 'photographer', 4362: 'photos', 4363: 'phrase', 4364: 'physical', 4365: 'pian-ee', 4366: 'piano', 4367: 'pick', 4368: 'picked', 4369: "pickin'", 4370: 'pickle', 4371: 'pickled', 4372: 'pickles', 4373: 'picky', 4374: 'picnic', 4375: 'picture', 4376: 'pictured', 4377: 'piece', 4378: 'pig', 4379: 'pigs', 4380: 'pigtown', 4381: 'pile', 4382: 'piling', 4383: 'pillows', 4384: 'pills', 4385: 'pilsner-pusher', 4386: 'pin', 4387: 'pinball', 4388: 'pinchpenny', 4389: 'pine', 4390: 'ping-pong', 4391: 'pink', 4392: 'pint', 4393: 'pip', 4394: 'pipe', 4395: 'pipes', 4396: 'pirate', 4397: 'pissed', 4398: 'pit', 4399: 'pitch', 4400: 'pitcher', 4401: 'pity', 4402: 'pizza', 4403: 'pizzicato', 4404: 'place', 4405: 'placed', 4406: 'placing', 4407: 'plain', 4408: 'plaintive', 4409: 'plan', 4410: 'plane', 4411: 'planet', 4412: "plank's", 4413: 'planned', 4414: 'planning', 4415: 'plans', 4416: 'plant', 4417: 'planted', 4418: 'plants', 4419: "plaster's", 4420: 'plastered', 4421: 'plastic', 4422: 'platinum', 4423: 'play', 4424: 'play/', 4425: 'played', 4426: 'players', 4427: 'playful', 4428: 'playhouse', 4429: "playin'", 4430: 'playing', 4431: 'playoff', 4432: 'pleading', 4433: 'pleasant', 4434: 'please', 4435: 'please/', 4436: 'pleased', 4437: 'pleasure', 4438: 'pledge', 4439: 'plenty', 4440: 'plotz', 4441: 'plow', 4442: 'plucked', 4443: 'plug', 4444: 'plum', 4445: 'plums', 4446: 'plus', 4447: 'plywood', 4448: 'pocket', 4449: 'pockets', 4450: 'poem', 4451: 'poet', 4452: 'poetics', 4453: 'poetry', 4454: 'poin-dexterous', 4455: 'point', 4456: 'pointed', 4457: 'pointedly', 4458: 'pointing', 4459: 'pointless', 4460: 'points', 4461: 'pointy', 4462: 'poison', 4463: "poisonin'", 4464: 'poisoning', 4465: 'poke', 4466: 'poker', 4467: 'poking', 4468: 'polenta', 4469: 'police', 4470: 'polish', 4471: 'polishing', 4472: 'polite', 4473: 'politician', 4474: 'politicians', 4475: 'politics', 4476: 'polls', 4477: 'polygon', 4478: 'pond', 4479: 'pontiff', 4480: 'pool', 4481: 'poor', 4482: 'poorer', 4483: 'pop', 4484: 'pope', 4485: "pope's", 4486: 'poplar', 4487: 'popped', 4488: 'popping', 4489: 'popular', 4490: 'population', 4491: 'porn', 4492: 'portentous', 4493: 'portfolium', 4494: 'portuguese', 4495: 'position', 4496: 'positive', 4497: 'possessions', 4498: 'possibly', 4499: 'post-suicide', 4500: 'poster', 4501: 'potato', 4502: 'potatoes', 4503: 'poulet', 4504: "poundin'", 4505: 'pour', 4506: 'poured', 4507: 'pouring', 4508: 'power', 4509: 'powered', 4510: 'powerful', 4511: 'powers', 4512: 'practically', 4513: 'practice', 4514: 'praise', 4515: 'prank', 4516: 'prayer', 4517: 'prayers', 4518: 'pre-columbian', 4519: 'pre-game', 4520: 'pre-recorded', 4521: 'precious', 4522: 'predecessor', 4523: 'predictable', 4524: 'prefer', 4525: 'pregnancy', 4526: 'prejudice', 4527: 'premiering', 4528: 'premise', 4529: 'prep', 4530: 'preparation', 4531: 'prepared', 4532: 'present', 4533: 'presentable', 4534: 'presently', 4535: 'presents', 4536: 'presided', 4537: 'president', 4538: "president's", 4539: 'presidential', 4540: 'presidents', 4541: 'press', 4542: 'presses', 4543: 'pressure', 4544: "pressure's", 4545: 'presto:', 4546: 'presumir', 4547: 'pretend', 4548: 'pretending', 4549: 'pretends', 4550: 'pretentious_rat_lover:', 4551: 'prettied', 4552: 'prettiest', 4553: 'pretty', 4554: 'pretzel', 4555: 'pretzels', 4556: 'price', 4557: 'priceless', 4558: 'prices', 4559: 'pride', 4560: 'pridesters:', 4561: 'priest', 4562: 'prime', 4563: 'prince', 4564: 'princess', 4565: 'princesses', 4566: 'principal', 4567: 'principles', 4568: 'prints', 4569: 'priority', 4570: 'prison', 4571: 'privacy', 4572: 'private', 4573: 'prize', 4574: 'prizefighters', 4575: 'pro', 4576: 'probably', 4577: 'problem', 4578: 'problemo', 4579: 'problems', 4580: 'procedure', 4581: 'process', 4582: 'produce', 4583: 'producers', 4584: 'product', 4585: 'products', 4586: 'professional', 4587: 'professor', 4588: "professor's", 4589: 'professor_jonathan_frink:', 4590: 'profiling', 4591: 'program', 4592: 'progress', 4593: 'prohibit', 4594: 'project', 4595: 'prolonged', 4596: 'promise', 4597: 'promised', 4598: 'promotion', 4599: 'prompting', 4600: 'pronounce', 4601: 'pronto', 4602: 'proof', 4603: 'proper', 4604: 'propose', 4605: 'proposing', 4606: 'proposition', 4607: 'protecting', 4608: 'protestantism', 4609: 'protesters', 4610: 'protesting', 4611: 'proud', 4612: 'proudly', 4613: 'prove', 4614: 'proves', 4615: 'provide', 4616: 'psst', 4617: 'pub', 4618: 'public', 4619: 'publish', 4620: 'published', 4621: 'publishers', 4622: 'pudgy', 4623: 'puff', 4624: 'puffy', 4625: 'pugilist', 4626: 'puke', 4627: 'puke-holes', 4628: 'puke-pail', 4629: 'pulitzer', 4630: 'pull', 4631: 'pulled', 4632: "pullin'", 4633: 'pulling', 4634: 'pulls', 4635: 'pumping', 4636: 'punch', 4637: 'punches', 4638: 'punching', 4639: 'punishment', 4640: 'punk', 4641: 'punkin', 4642: 'pure', 4643: 'purse', 4644: 'pursue', 4645: 'purveyor', 4646: 'pus-bucket', 4647: 'push', 4648: 'pushes', 4649: 'pushing', 4650: 'pusillanimous', 4651: 'pussycat', 4652: 'put', 4653: 'puts', 4654: "puttin'", 4655: 'putting', 4656: 'putty', 4657: 'puzzle', 4658: 'puzzled', 4659: 'pyramid', 4660: 'quadruple-sec', 4661: 'quality', 4662: 'quarry', 4663: 'quarter', 4664: 'quarterback', 4665: 'quebec', 4666: 'queen', 4667: "queen's", 4668: 'queer', 4669: 'quero', 4670: 'question', 4671: 'quick', 4672: 'quick-like', 4673: 'quickly', 4674: 'quiet', 4675: 'quietly', 4676: 'quimby', 4677: 'quimby_#2:', 4678: 'quimbys:', 4679: 'quit', 4680: 'quitcher', 4681: 'quite', 4682: 'quotes', 4683: 'r', 4684: 'rabbits', 4685: 'raccoons', 4686: 'race', 4687: 'racially-diverse', 4688: 'radiation', 4689: 'radiator', 4690: 'radical', 4691: 'radio', 4692: 'radioactive', 4693: 'radishes', 4694: 'rafter', 4695: 'rafters', 4696: 'rag', 4697: 'rage', 4698: 'raggie', 4699: "raggin'", 4700: "ragin'", 4701: 'raging', 4702: 'ragtime', 4703: 'railroad', 4704: 'railroads', 4705: 'rain', 4706: 'rainbows', 4707: 'rainforest', 4708: 'rainier', 4709: 'rainier_wolfcastle:', 4710: 'raining', 4711: 'raise', 4712: 'raises', 4713: 'raising', 4714: 'raking', 4715: 'ralph', 4716: 'ralph_wiggum:', 4717: 'ralphie', 4718: 'ram', 4719: 'ran', 4720: 'rancid', 4721: 'random', 4722: 'rap', 4723: 'rapidly', 4724: 'rascals', 4725: 'rash', 4726: 'rasputin', 4727: "rasputin's", 4728: 'rat', 4729: 'rat-like', 4730: 'rather', 4731: 'ratio', 4732: 'rationalizing', 4733: 'rats', 4734: 'ratted', 4735: 're-al', 4736: 're:', 4737: 'reach', 4738: 'reached', 4739: 'reaches', 4740: 'reaching', 4741: 'reaction', 4742: 'reactions', 4743: 'read', 4744: 'read:', 4745: 'reader', 4746: "readin'", 4747: 'reading', 4748: 'reading:', 4749: 'reads', 4750: 'ready', 4751: 'real', 4752: 'reality', 4753: 'realize', 4754: 'realized', 4755: 'realizing', 4756: 'really', 4757: 'reason', 4758: 'reasonable', 4759: 'reasons', 4760: 'rebuilt', 4761: 'rebuttal', 4762: 'recall', 4763: 'recap:', 4764: 'recent', 4765: 'recently', 4766: 'recipe', 4767: 'reciting', 4768: 'reckless', 4769: 'recommend', 4770: 'reconsidering', 4771: 'record', 4772: 'recorded', 4773: 'recorder', 4774: 'recreate', 4775: 'recruiter', 4776: 'rector', 4777: 'red', 4778: 'reed', 4779: 'reentering', 4780: 'ref', 4781: 'referee', 4782: 'refiero', 4783: 'refill', 4784: 'refinanced', 4785: 'reflected', 4786: 'refresh', 4787: 'refreshing', 4788: 'refreshingness', 4789: 'refreshment', 4790: 'refund', 4791: 'register', 4792: 'regret', 4793: 'regretful', 4794: 'regretted', 4795: 'regulars', 4796: 'regulations', 4797: 'rekindle', 4798: 'relationship', 4799: 'relative', 4800: 'relax', 4801: 'relaxed', 4802: 'relaxing', 4803: 'release', 4804: 'releases', 4805: 'releasing', 4806: 'reliable', 4807: 'relieved', 4808: 'religion', 4809: 'religious', 4810: 'reluctant', 4811: 'reluctantly', 4812: 'rem', 4813: 'remain', 4814: 'remaining', 4815: 'remains', 4816: 'remember', 4817: 'remembered', 4818: 'remembering', 4819: 'remembers', 4820: 'reminded', 4821: 'reminds', 4822: 'remodel', 4823: 'remorseful', 4824: 'remote', 4825: 'renders', 4826: 'renee', 4827: "renee's", 4828: 'renee:', 4829: 'renew', 4830: "renovatin'", 4831: 'renovations', 4832: 'rent', 4833: 'rented', 4834: "rentin'", 4835: 'reopen', 4836: 'repairman', 4837: 'repay', 4838: 'repeated', 4839: 'repeating', 4840: 'replace', 4841: 'replaced', 4842: 'reporter', 4843: 'reporter:', 4844: 'represent', 4845: 'represents', 4846: 'repressed', 4847: 'reptile', 4848: 'researching', 4849: 'resenting', 4850: 'reserve', 4851: 'reserved', 4852: 'resigned', 4853: 'resist', 4854: 'resolution', 4855: 'respect', 4856: 'rest', 4857: 'restaurant', 4858: 'restaurants', 4859: 'restless', 4860: 'restroom', 4861: 'result', 4862: 'results', 4863: 'retain', 4864: 'retired', 4865: 'return', 4866: 'reunion', 4867: 'rev', 4868: 'revenge', 4869: 'reviews', 4870: 'reward', 4871: 'rewound', 4872: 'reynolds', 4873: 'rhode', 4874: 'rhyme', 4875: 'ribbon', 4876: 'rice', 4877: 'rich', 4878: 'richard', 4879: 'richard:', 4880: 'richer', 4881: 'rickles', 4882: 'rid', 4883: 'ride', 4884: 'ridiculous', 4885: "ridin'", 4886: 'riding', 4887: 'rife', 4888: 'rig', 4889: 'righ', 4890: 'right', 4891: 'right-handed', 4892: 'rims', 4893: 'ring', 4894: 'ringing', 4895: 'rings', 4896: 'rip', 4897: 'rip-off', 4898: 'ripcord', 4899: 'ripped', 4900: 'ripper', 4901: 'ripping', 4902: 'risqué', 4903: 'rivalry', 4904: 'riveting', 4905: 'roach', 4906: 'road', 4907: 'rob', 4908: 'robbers', 4909: "robbin'", 4910: 'robin', 4911: 'robot', 4912: 'rock', 4913: 'rockers', 4914: 'rocks', 4915: 'rods', 4916: 'roll', 4917: 'rolled', 4918: 'roller', 4919: 'rolling', 4920: 'rolls', 4921: 'rom', 4922: 'romance', 4923: 'romantic', 4924: 'rome', 4925: 'ron', 4926: 'ron_howard:', 4927: 'ronstadt', 4928: 'roof', 4929: 'rookie', 4930: 'room', 4931: 'roomy', 4932: 'root', 4933: 'rope', 4934: 'roses', 4935: 'rosey', 4936: 'rotch', 4937: 'rotten', 4938: 'rough', 4939: 'round', 4940: "round's", 4941: 'rounds', 4942: 'routine', 4943: 'row', 4944: 'roy', 4945: 'royal', 4946: 'roz', 4947: 'roz:', 4948: 'rub', 4949: 'rub-a-dub', 4950: 'rubbed', 4951: 'rubs', 4952: 'ruby-studded', 4953: 'rude', 4954: 'rueful', 4955: 'rug', 4956: 'rugged', 4957: 'ruin', 4958: 'ruined', 4959: 'ruint', 4960: 'rule', 4961: 'ruled', 4962: 'rules', 4963: 'rumaki', 4964: 'rummy', 4965: 'rumor', 4966: 'rump', 4967: 'run', 4968: 'runaway', 4969: 'runners', 4970: 'running', 4971: 'runs', 4972: 'runt', 4973: 'rupert_murdoch:', 4974: 'rush', 4975: "rustlin'", 4976: 'rusty', 4977: 'rutabaga', 4978: 'ruuuule', 4979: 's', 4980: "s'cuse", 4981: "s'okay", 4982: "s'pose", 4983: 's-a-u-r-c-e', 4984: 'sabermetrics', 4985: 'sacajawea', 4986: 'sack', 4987: 'sacrifice', 4988: 'sacrilicious', 4989: 'sad', 4990: 'sadder', 4991: 'sadistic_barfly:', 4992: 'sadly', 4993: 'safe', 4994: 'safecracker', 4995: 'safely', 4996: 'safer', 4997: 'safety', 4998: 'saga', 4999: 'sagacity', 5000: 'sagely', 5001: 'saget', 5002: 'said', 5003: 'said:', 5004: 'sail', 5005: 'saint', 5006: 'salad', 5007: 'salary', 5008: 'sale', 5009: 'sales', 5010: 'salt', 5011: 'salvador', 5012: 'salvation', 5013: 'sam:', 5014: 'same', 5015: 'sampler', 5016: 'samples', 5017: 'sanctuary', 5018: 'sandwich', 5019: 'sang', 5020: 'sangre', 5021: 'sanitary', 5022: 'sanitation', 5023: 'santa', 5024: "santa's", 5025: 'santeria', 5026: 'sap', 5027: 'sarcastic', 5028: 'sass', 5029: 'sassy', 5030: 'sat', 5031: "sat's", 5032: 'sat-is-fac-tion', 5033: 'satisfaction', 5034: 'satisfied', 5035: 'saturday', 5036: 'sauce', 5037: 'saucy', 5038: 'sausage', 5039: 'savagely', 5040: 'save', 5041: 'saved', 5042: 'saving', 5043: 'savings', 5044: 'savvy', 5045: 'saw', 5046: 'say', 5047: "sayin'", 5048: 'saying', 5049: 'says', 5050: 'scam', 5051: "scammin'", 5052: 'scanning', 5053: 'scare', 5054: 'scared', 5055: 'scarf', 5056: 'scary', 5057: 'scatter', 5058: 'scene', 5059: 'scent', 5060: 'schabadoo', 5061: 'schedule', 5062: 'schemes', 5063: 'schizophrenia', 5064: 'schmoe', 5065: 'schnapps', 5066: 'school', 5067: "school's", 5068: 'schorr', 5069: 'science', 5070: 'scientific', 5071: 'scientists', 5072: 'scoffs', 5073: 'scooter', 5074: 'score', 5075: 'scores', 5076: 'scornful', 5077: 'scornfully', 5078: 'scotch', 5079: 'scout', 5080: 'scram', 5081: 'scrape', 5082: 'scratcher', 5083: 'scratching', 5084: 'scream', 5085: 'screams', 5086: 'screw', 5087: 'screws', 5088: 'script', 5089: 'scrubbing', 5090: 'scruffy_blogger:', 5091: 'scrutinizes', 5092: 'scrutinizing', 5093: 'scully', 5094: 'scum', 5095: 'scum-sucking', 5096: 'sea', 5097: 'sealed', 5098: 'seamstress', 5099: 'searching', 5100: 'seas', 5101: 'season', 5102: 'seat', 5103: 'seats', 5104: 'sec', 5105: 'sec_agent_#1:', 5106: 'sec_agent_#2:', 5107: 'second', 5108: 'seconds', 5109: 'secret', 5110: "secret's", 5111: 'secrets', 5112: 'sector', 5113: 'securities', 5114: 'sedaris', 5115: 'seductive', 5116: 'see', 5117: "seein'", 5118: 'seeing', 5119: 'seek', 5120: 'seem', 5121: 'seemed', 5122: 'seems', 5123: 'seen', 5124: 'sees', 5125: 'sees/', 5126: 'seething', 5127: 'selection', 5128: 'selective', 5129: 'self', 5130: 'self-centered', 5131: 'self-esteem', 5132: 'self-made', 5133: 'self-satisfied', 5134: 'selfish', 5135: 'sell', 5136: 'selling', 5137: 'sells', 5138: 'selma', 5139: 'selma_bouvier:', 5140: 'semi-imported', 5141: 'seminar', 5142: 'sen', 5143: 'senator', 5144: 'senators', 5145: 'senators:', 5146: 'send', 5147: 'sending', 5148: 'sense', 5149: 'sensible', 5150: 'sensitivity', 5151: 'sent', 5152: 'sentimonies', 5153: 'separator', 5154: 'sequel', 5155: 'series', 5156: 'serious', 5157: 'seriously', 5158: 'serum', 5159: 'serve', 5160: 'served', 5161: 'service', 5162: 'sesame', 5163: 'set', 5164: 'sets', 5165: 'settled', 5166: 'settlement', 5167: 'settles', 5168: 'seven', 5169: 'severe', 5170: 'sex', 5171: 'sexton', 5172: 'sexual', 5173: 'sexy', 5174: 'seymour', 5175: 'seymour_skinner:', 5176: 'shack', 5177: 'shades', 5178: 'shag', 5179: 'shaggy', 5180: 'shaken', 5181: 'shaker', 5182: 'shakes', 5183: 'shakespeare', 5184: 'shaking', 5185: 'shaky', 5186: 'shall', 5187: 'shame', 5188: "shan't", 5189: 'shape', 5190: 'shard', 5191: 'share', 5192: 'shareholder', 5193: 'shares', 5194: 'sharing', 5195: 'sharity', 5196: 'shark', 5197: 'sharps', 5198: 'shaved', 5199: 'she', 5200: "she'd", 5201: "she'll", 5202: "she's", 5203: 'she-pu', 5204: 'sheepish', 5205: 'sheet', 5206: 'sheets', 5207: 'shelbyville', 5208: 'shelf', 5209: 'shells', 5210: 'sheriff', 5211: 'shesh', 5212: 'shhh', 5213: 'shifty', 5214: 'shill', 5215: 'shindig', 5216: 'shipment', 5217: 'shirt', 5218: 'shock', 5219: 'shocked', 5220: 'shoe', 5221: 'shoes', 5222: 'shoo', 5223: 'shoot', 5224: "shootin'", 5225: 'shooting', 5226: 'shoots', 5227: 'shop', 5228: 'shopping', 5229: 'shores', 5230: 'short', 5231: 'short_man:', 5232: 'shortcomings', 5233: 'shorter', 5234: 'shot', 5235: 'shotgun', 5236: 'should', 5237: "should've", 5238: 'shoulda', 5239: 'shoulder', 5240: 'shoulders', 5241: "shouldn't", 5242: 'shout', 5243: 'shove', 5244: 'show', 5245: "show's", 5246: 'show-off', 5247: 'showed', 5248: 'shower', 5249: 'showered', 5250: "showin'", 5251: 'showing', 5252: 'shows', 5253: 'shred', 5254: 'shreda', 5255: 'shrieks', 5256: 'shriners', 5257: 'shrugging', 5258: 'shrugs', 5259: 'shtick', 5260: 'shush', 5261: 'shut', 5262: 'shuts', 5263: 'shutting', 5264: 'shutup', 5265: 'shyly', 5266: 'si-lent', 5267: 'sick', 5268: 'sickened', 5269: 'sickens', 5270: 'sickly', 5271: 'side', 5272: 'side:', 5273: 'sidekick', 5274: 'sidelines', 5275: 'sideshow', 5276: 'sideshow_bob:', 5277: 'sideshow_mel:', 5278: 'sieben-gruben', 5279: 'sigh', 5280: 'sighs', 5281: 'sight', 5282: 'sight-unseen', 5283: 'sign', 5284: 'signal', 5285: 'signed', 5286: 'silence', 5287: 'silent', 5288: 'simon', 5289: 'simp-sonnnn', 5290: 'simple', 5291: 'simplest', 5292: 'simpson', 5293: 'simpsons', 5294: 'simultaneous', 5295: 'since', 5296: 'sincere', 5297: 'sincerely', 5298: 'sing', 5299: 'sing-song', 5300: 'singer', 5301: 'singers:', 5302: "singin'", 5303: 'singing', 5304: 'singing/pushing', 5305: 'single', 5306: 'single-mindedness', 5307: 'sings', 5308: 'sinister', 5309: 'sink', 5310: 'sinkhole', 5311: "sippin'", 5312: 'sips', 5313: 'sir', 5314: 'sissy', 5315: 'sister', 5316: 'sister-in-law', 5317: 'sisters', 5318: 'sistine', 5319: 'sit', 5320: 'sitar', 5321: 'sitcom', 5322: 'site', 5323: 'sits', 5324: "sittin'", 5325: 'sitting', 5326: 'situation', 5327: 'six', 5328: 'six-barrel', 5329: 'sixteen', 5330: 'sixty', 5331: 'sixty-five', 5332: 'sixty-nine', 5333: 'size', 5334: 'sizes', 5335: 'skeptical', 5336: 'sketch', 5337: 'sketching', 5338: 'skills', 5339: 'skin', 5340: 'skinheads', 5341: 'skinner', 5342: 'skinny', 5343: 'skins', 5344: 'skirt', 5345: 'skoal', 5346: 'skunk', 5347: 'sky', 5348: 'skydiving', 5349: 'slab', 5350: 'slap', 5351: 'slapped', 5352: 'slaps', 5353: 'slaves', 5354: 'slays', 5355: 'sledge-hammer', 5356: 'sleep', 5357: 'sleeping', 5358: 'sleeps', 5359: 'sleigh-horses', 5360: 'slender', 5361: 'slice', 5362: 'slick', 5363: 'slight', 5364: 'slightly', 5365: 'slim', 5366: 'slip', 5367: 'slipped', 5368: 'slit', 5369: 'slobbo', 5370: 'slobs', 5371: 'sloe', 5372: 'slogan', 5373: 'slop', 5374: 'sloppy', 5375: 'slot', 5376: 'slow', 5377: 'slugger', 5378: 'slurps', 5379: 'slurred', 5380: 'sly', 5381: 'slyly', 5382: "smackin'", 5383: 'small', 5384: 'small_boy:', 5385: 'smallest', 5386: 'smart', 5387: 'smell', 5388: 'smelling', 5389: 'smells', 5390: 'smelly', 5391: 'smile', 5392: 'smile:', 5393: 'smiled', 5394: 'smiles', 5395: 'smiling', 5396: 'smithers', 5397: 'smitty:', 5398: 'smoke', 5399: 'smoker', 5400: 'smokes', 5401: "smokin'", 5402: "smokin'_joe_frazier:", 5403: 'smooth', 5404: 'smoothly', 5405: 'smug', 5406: 'smuggled', 5407: 'smugglers', 5408: 'smurfs', 5409: 'snackie', 5410: 'snail', 5411: 'snake', 5412: 'snake-handler', 5413: 'snake_jailbird:', 5414: 'snap', 5415: "snappin'", 5416: 'snapping', 5417: 'snaps', 5418: 'snatch', 5419: 'sneak', 5420: 'sneaky', 5421: 'sneering', 5422: 'sneeze', 5423: 'snide', 5424: 'sniffing', 5425: 'sniffles', 5426: 'sniffs', 5427: 'sniper', 5428: 'snitch', 5429: 'snort', 5430: 'snorts', 5431: 'snotball', 5432: 'snotty', 5433: 'snout', 5434: 'snow', 5435: 'so', 5436: 'so-called', 5437: 'so-ng', 5438: 'soaked', 5439: "soakin's", 5440: 'soaking', 5441: 'soap', 5442: 'soaps', 5443: 'sob', 5444: 'sobbing', 5445: 'sober', 5446: 'sobo', 5447: 'sobriety', 5448: 'sobs', 5449: 'social', 5450: 'socialize', 5451: 'society', 5452: 'society_matron:', 5453: 'socratic', 5454: 'sodas', 5455: 'soft', 5456: 'softer', 5457: 'soir', 5458: 'sold', 5459: 'solely', 5460: 'solid', 5461: 'solo', 5462: 'solved', 5463: 'solves', 5464: 'some', 5465: 'somebody', 5466: "somebody's", 5467: 'someday', 5468: 'somehow', 5469: 'someone', 5470: "someone's", 5471: 'someplace', 5472: "somethin'", 5473: "somethin':", 5474: "somethin's", 5475: 'something', 5476: "something's", 5477: 'something:', 5478: 'sometime', 5479: 'sometimes', 5480: 'somewhere', 5481: 'son', 5482: "son's", 5483: 'son-of-a', 5484: 'song', 5485: 'soon', 5486: 'sooner', 5487: 'sooo', 5488: 'soot', 5489: 'soothing', 5490: 'sorry', 5491: 'sorts', 5492: 'sotto', 5493: 'soul', 5494: 'soul-crushing', 5495: 'sound', 5496: 'sounded', 5497: "soundin'", 5498: 'sounds', 5499: 'soup', 5500: 'souped', 5501: 'sour', 5502: 'source', 5503: 'south', 5504: 'southern', 5505: 'souvenir', 5506: 'space', 5507: 'space-time', 5508: 'spacey', 5509: "spaghetti-o's", 5510: 'spamming', 5511: 'spanish', 5512: 'spare', 5513: 'speak', 5514: "speakin'", 5515: 'speaking', 5516: 'special', 5517: 'specialists', 5518: 'specializes', 5519: 'specials', 5520: 'species', 5521: 'specific', 5522: 'specified', 5523: 'spectacular', 5524: 'speech', 5525: 'speed', 5526: 'spellbinding', 5527: 'spelling', 5528: 'spend', 5529: 'spender', 5530: 'spending', 5531: 'spent', 5532: 'sperm', 5533: 'spews', 5534: 'spied', 5535: "spiffin'", 5536: 'spilled', 5537: 'spine', 5538: 'spinning', 5539: 'spirit', 5540: 'spiritual', 5541: 'spit', 5542: 'spit-backs', 5543: 'spite', 5544: 'spits', 5545: 'spitting', 5546: 'splash', 5547: 'splattered', 5548: 'splendid', 5549: 'spoken', 5550: 'sponge', 5551: 'sponge:', 5552: 'sponsor', 5553: 'sponsoring', 5554: 'spooky', 5555: 'spoon', 5556: 'sport', 5557: 'sports', 5558: 'sports_announcer:', 5559: 'spot', 5560: 'spotting', 5561: 'spouses', 5562: 'sprawl', 5563: 'spread', 5564: 'spreads', 5565: 'springfield', 5566: "springfield's", 5567: 'spy', 5568: "spyin'", 5569: 'squabbled', 5570: 'squad', 5571: 'squadron', 5572: 'square', 5573: 'squashing', 5574: 'squeal', 5575: 'squeals', 5576: 'squeeze', 5577: 'squeezed', 5578: "squeezin'", 5579: 'squirrel', 5580: 'squirrels', 5581: 'squishee', 5582: 'st', 5583: 'stab', 5584: "stabbin'", 5585: 'stacey', 5586: 'stadium', 5587: 'stage', 5588: 'stagehand:', 5589: 'stagey', 5590: 'stagy', 5591: 'stained-glass', 5592: 'stairs', 5593: 'stalin', 5594: 'stalking', 5595: "stallin'", 5596: 'stalwart', 5597: 'stamp', 5598: 'stamps', 5599: 'stan', 5600: 'stand', 5601: 'standards', 5602: 'standing', 5603: 'stands', 5604: 'star', 5605: 'stares', 5606: 'starla', 5607: "starla's", 5608: 'starla:', 5609: 'starlets', 5610: 'stars', 5611: 'start', 5612: 'started', 5613: 'starters', 5614: "startin'", 5615: 'starting', 5616: 'startled', 5617: 'starts', 5618: 'startup', 5619: 'starve', 5620: 'starving', 5621: 'state', 5622: 'states', 5623: 'statesmanlike', 5624: 'station', 5625: 'stationery', 5626: 'statistician', 5627: 'stats', 5628: 'statue', 5629: 'statues', 5630: 'stay', 5631: 'stay-puft', 5632: 'stayed', 5633: "stayin'", 5634: 'staying', 5635: 'stays', 5636: 'steak', 5637: 'steal', 5638: "stealin'", 5639: 'stealings', 5640: 'steam', 5641: 'steamed', 5642: 'steaming', 5643: 'steampunk', 5644: 'steel', 5645: 'steely-eyed', 5646: 'stein-stengel-', 5647: 'steinbrenner', 5648: 'stengel', 5649: 'step', 5650: 'stepped', 5651: 'stern', 5652: 'sternly', 5653: 'stevie', 5654: 'stewart', 5655: 'stick', 5656: 'sticker', 5657: 'stickers', 5658: 'sticking', 5659: 'sticking-place', 5660: 'stiffening', 5661: 'still', 5662: 'stillwater:', 5663: 'stinger', 5664: 'stingy', 5665: 'stink', 5666: "stinkin'", 5667: 'stinks', 5668: 'stinky', 5669: 'stir', 5670: 'stirrers', 5671: 'stirring', 5672: 'stock', 5673: 'stocking', 5674: 'stole', 5675: 'stolen', 5676: 'stomach', 5677: 'stones', 5678: 'stonewall', 5679: 'stood', 5680: 'stooges', 5681: 'stool', 5682: 'stools', 5683: 'stop', 5684: 'stopped', 5685: 'stops', 5686: 'store', 5687: 'store-bought', 5688: 'stored', 5689: 'stores', 5690: 'stories', 5691: 'storms', 5692: 'story', 5693: 'straight', 5694: 'straighten', 5695: 'strain', 5696: 'straining', 5697: 'strains', 5698: 'stranger:', 5699: 'strangles', 5700: 'strap', 5701: 'strategizing', 5702: 'strategy', 5703: 'strawberry', 5704: 'street', 5705: 'streetcorner', 5706: 'streetlights', 5707: 'stretch', 5708: 'stretches', 5709: 'strictly', 5710: 'string', 5711: 'stripe', 5712: 'stripes', 5713: 'strips', 5714: 'strokkur', 5715: 'strolled', 5716: 'strong', 5717: 'strongly', 5718: 'struggling', 5719: 'stu', 5720: 'stuck', 5721: 'student', 5722: 'studied', 5723: 'studio', 5724: 'stuff', 5725: 'stumble', 5726: 'stunned', 5727: 'stupid', 5728: 'stupidest', 5729: 'stupidly', 5730: 'sturdy', 5731: 'suave', 5732: 'sub-monkeys', 5733: 'subject', 5734: 'subscriptions', 5735: 'suburban', 5736: 'successful', 5737: 'such', 5738: 'suck', 5739: 'sucked', 5740: 'sucker', 5741: 'sucking', 5742: 'sucks', 5743: 'sudden', 5744: 'suddenly', 5745: 'sudoku', 5746: 'suds', 5747: 'sue', 5748: 'sued', 5749: 'suffering', 5750: 'sugar', 5751: 'sugar-free', 5752: 'sugar-me-do', 5753: 'suicide', 5754: 'suing', 5755: 'suit', 5756: 'suits', 5757: 'sumatran', 5758: 'summer', 5759: "summer's", 5760: 'sun', 5761: 'sunday', 5762: 'sunglasses', 5763: 'sunk', 5764: 'sunny', 5765: 'super', 5766: 'super-genius', 5767: 'super-nice', 5768: 'super-tough', 5769: 'superdad', 5770: 'superhero', 5771: 'superior', 5772: 'supermarket', 5773: 'supermodel', 5774: 'superpower', 5775: 'supervising', 5776: 'supply', 5777: 'supplying', 5778: 'support', 5779: 'supports', 5780: 'suppose', 5781: 'supposed', 5782: 'supreme', 5783: 'sure', 5784: 'surgeonnn', 5785: 'surgery', 5786: 'surprise', 5787: 'surprised', 5788: 'surprised/thrilled', 5789: 'surprising', 5790: 'suru', 5791: 'survive', 5792: 'susie-q', 5793: 'suspect', 5794: 'suspended', 5795: 'suspenders', 5796: 'suspicious', 5797: 'suspiciously', 5798: 'sustain', 5799: 'swallowed', 5800: 'swamp', 5801: 'swan', 5802: 'swatch', 5803: 'swe-ee-ee-ee-eet', 5804: 'swear', 5805: 'sweat', 5806: 'sweater', 5807: 'sweaty', 5808: 'sweden', 5809: 'sweet', 5810: 'sweeter', 5811: 'sweetest', 5812: 'sweetheart', 5813: 'sweetie', 5814: 'sweetly', 5815: 'swell', 5816: 'swelling', 5817: 'swig', 5818: 'swigmore', 5819: 'swill', 5820: 'swimmers', 5821: 'swimming', 5822: 'swine', 5823: 'swings', 5824: "swishifyin'", 5825: 'swishkabobs', 5826: 'switch', 5827: 'switched', 5828: 'swooning', 5829: 'sympathetic', 5830: 'sympathizer', 5831: 'sympathy', 5832: 'symphonies', 5833: 'syndicate', 5834: 'synthesize', 5835: 'syrup', 5836: 'system', 5837: 'szyslak', 5838: 't-shirt', 5839: 'tab', 5840: "tab's", 5841: 'table', 5842: "table's", 5843: 'tablecloth', 5844: 'tabooger', 5845: 'tabs', 5846: 'tactful', 5847: 'tail', 5848: 'take', 5849: 'take-back', 5850: 'takeaway', 5851: 'taken', 5852: 'takes', 5853: "takin'", 5854: 'taking', 5855: 'tale', 5856: 'talk', 5857: 'talk-sings', 5858: 'talkative', 5859: 'talked', 5860: 'talkers', 5861: "talkin'", 5862: 'talking', 5863: 'tall', 5864: 'tang', 5865: 'tank', 5866: 'tanked-up', 5867: 'tanking', 5868: 'tap', 5869: "tap-pullin'", 5870: 'tape', 5871: 'tapered', 5872: 'tapestry', 5873: 'tapping', 5874: 'taps', 5875: 'tar-paper', 5876: 'tasimeter', 5877: 'taste', 5878: 'tastes', 5879: 'tasty', 5880: 'tatum', 5881: "tatum'll", 5882: 'taught', 5883: 'taunting', 5884: 'tavern', 5885: 'tax', 5886: 'taxes', 5887: 'taxi', 5888: 'taylor', 5889: 'teach', 5890: 'teacher', 5891: 'teacup', 5892: 'team', 5893: "team's", 5894: 'teams', 5895: 'tear', 5896: 'tearfully', 5897: 'tears', 5898: 'tease', 5899: 'technical', 5900: 'teddy', 5901: 'tee', 5902: 'teen', 5903: 'teenage', 5904: 'teenage_barney:', 5905: 'teenage_bart:', 5906: 'teenage_homer:', 5907: 'teeth', 5908: 'telegraph', 5909: 'telemarketing', 5910: 'telephone', 5911: 'television', 5912: 'tell', 5913: "tellin'", 5914: 'telling', 5915: 'tells', 5916: 'temp', 5917: 'temper', 5918: 'temple', 5919: 'temples', 5920: 'temporarily', 5921: 'tempting', 5922: 'ten', 5923: 'tender', 5924: 'tenor:', 5925: 'tense', 5926: 'tentative', 5927: 'tenuous', 5928: 'teriyaki', 5929: 'term', 5930: 'terminated', 5931: 'terrace', 5932: 'terrible', 5933: 'terrific', 5934: 'terrified', 5935: 'terrifying', 5936: 'territorial', 5937: 'terror', 5938: 'terrorizing', 5939: 'test', 5940: 'test-', 5941: 'test-lady', 5942: 'tester', 5943: "tester's", 5944: 'testing', 5945: 'texan', 5946: 'texas', 5947: 'text', 5948: 'th', 5949: 'th-th-th-the', 5950: 'tha', 5951: 'than', 5952: 'thank', 5953: 'thankful', 5954: 'thanking', 5955: 'thanks', 5956: 'thanksgiving', 5957: 'that', 5958: "that'd", 5959: "that'll", 5960: "that's", 5961: 'thawing', 5962: 'the', 5963: 'the_edge:', 5964: 'the_rich_texan:', 5965: 'theatah', 5966: 'theater', 5967: 'theatrical', 5968: 'their', 5969: 'them', 5970: 'theme', 5971: 'themselves', 5972: 'then', 5973: 'then:', 5974: 'theory', 5975: 'therapist', 5976: 'therapy', 5977: 'there', 5978: "there's", 5979: 'therefore', 5980: 'thesaurus', 5981: 'these', 5982: 'they', 5983: "they'd", 5984: "they'll", 5985: "they're", 5986: "they've", 5987: 'thighs', 5988: 'thing', 5989: "thing's", 5990: 'thing:', 5991: 'things', 5992: 'think', 5993: "thinkin'", 5994: 'thinking', 5995: 'thinks', 5996: 'third', 5997: 'thirsty', 5998: 'thirteen', 5999: 'thirty', 6000: 'thirty-five', 6001: 'thirty-nine', 6002: 'thirty-thousand', 6003: 'thirty-three', 6004: 'this', 6005: "this'll", 6006: 'this:', 6007: 'thnord', 6008: 'thomas', 6009: 'thorn', 6010: 'thorough', 6011: 'those', 6012: 'though', 6013: 'though:', 6014: 'thought', 6015: 'thought_bubble_homer:', 6016: 'thought_bubble_lenny:', 6017: 'thoughtful', 6018: 'thoughtfully', 6019: 'thoughtless', 6020: 'thoughts', 6021: 'thousand', 6022: 'thousand-year', 6023: 'thousands', 6024: 'threatening', 6025: 'three', 6026: 'three-man', 6027: 'threw', 6028: 'thrilled', 6029: 'throat', 6030: 'throats', 6031: 'through', 6032: 'throw', 6033: 'throwing', 6034: 'thrown', 6035: 'throws', 6036: 'thru', 6037: 'thrust', 6038: 'thumb', 6039: 'thunder', 6040: 'tick', 6041: 'ticket', 6042: 'tickets', 6043: 'ticks', 6044: 'tidy', 6045: 'tie', 6046: 'tied', 6047: 'tiger', 6048: 'tigers', 6049: 'tight', 6050: 'till', 6051: 'timbuk-tee', 6052: 'time', 6053: "time's", 6054: 'times', 6055: 'tin', 6056: 'tinkle', 6057: "tinklin'", 6058: 'tiny', 6059: 'tip', 6060: 'tips', 6061: 'tipsy', 6062: 'tire', 6063: 'tired', 6064: 'title', 6065: 'title:', 6066: 'to', 6067: 'toasting', 6068: 'tobacky', 6069: 'today', 6070: "today's", 6071: 'today/', 6072: 'toe', 6073: 'tofu', 6074: 'together', 6075: 'togetherness', 6076: 'toilet', 6077: 'tokens', 6078: 'told', 6079: 'toledo', 6080: 'tolerable', 6081: 'tolerance', 6082: 'tom', 6083: 'tomahto', 6084: 'tomato', 6085: 'tomatoes', 6086: 'tommy', 6087: 'tomorrow', 6088: "tomorrow's", 6089: 'toms', 6090: 'ton', 6091: 'tones', 6092: 'tongue', 6093: 'tonic', 6094: 'tonight', 6095: "tonight's", 6096: 'tons', 6097: 'tony', 6098: "tony's", 6099: 'too', 6100: 'took', 6101: "toot's", 6102: 'tooth', 6103: "tootin'", 6104: 'top', 6105: 'torn', 6106: 'tornado', 6107: 'toss', 6108: 'total', 6109: 'totalitarians', 6110: 'totally', 6111: 'touch', 6112: 'touchdown', 6113: 'touched', 6114: 'touches', 6115: 'tough', 6116: 'tourist', 6117: 'tow', 6118: 'tow-joes', 6119: 'tow-talitarian', 6120: 'toward', 6121: 'towed', 6122: 'town', 6123: "town's", 6124: 'toxins', 6125: 'toy', 6126: 'toys', 6127: 'tracks', 6128: 'trade', 6129: 'tradition', 6130: 'traditions', 6131: 'traffic', 6132: 'tragedy', 6133: 'trail', 6134: 'train', 6135: 'trainers', 6136: 'training', 6137: 'traitor', 6138: 'traitors', 6139: "tramp's", 6140: 'transfer', 6141: 'transmission', 6142: 'transylvania', 6143: 'trapped', 6144: 'trapping', 6145: 'trash', 6146: 'trashed', 6147: 'travel', 6148: 'treasure', 6149: 'treat', 6150: "treatin'", 6151: 'treats', 6152: 'tree', 6153: "tree's", 6154: 'tree_hoper:', 6155: 'treehouse', 6156: 'trees', 6157: 'tremendous', 6158: 'trench', 6159: 'trenchant', 6160: 'triangle', 6161: 'tribute', 6162: 'trick', 6163: 'tried', 6164: 'tries', 6165: 'trip', 6166: 'triple-sec', 6167: 'triumphantly', 6168: 'trivia', 6169: 'troll', 6170: 'trolls', 6171: 'tropical', 6172: 'trouble', 6173: 'troubles', 6174: 'troy', 6175: 'troy:', 6176: 'troy_mcclure:', 6177: 'truck', 6178: 'truck_driver:', 6179: 'trucks', 6180: 'true', 6181: 'trunk', 6182: 'trust', 6183: 'trusted', 6184: 'trustworthy', 6185: 'truth', 6186: 'try', 6187: "tryin'", 6188: 'trying', 6189: 'tsk', 6190: 'tsking', 6191: 'tubman', 6192: 'tuborg', 6193: 'tummies', 6194: 'tuna', 6195: 'tune', 6196: 'turkey', 6197: 'turlet', 6198: 'turn', 6199: 'turned', 6200: 'turning', 6201: 'turns', 6202: 'tv', 6203: "tv'll", 6204: "tv's", 6205: 'tv-station_announcer:', 6206: 'tv_announcer:', 6207: 'tv_daughter:', 6208: 'tv_father:', 6209: 'tv_husband:', 6210: 'tv_wife:', 6211: 'twelve', 6212: 'twelve-step', 6213: 'twelveball', 6214: 'twentieth', 6215: 'twenty', 6216: 'twenty-five', 6217: 'twenty-four', 6218: 'twenty-nine', 6219: 'twenty-six', 6220: 'twenty-two', 6221: 'twerpy', 6222: 'twice', 6223: 'twin', 6224: 'twins', 6225: 'two', 6226: 'two-drink', 6227: 'two-thirds-empty', 6228: 'tying', 6229: 'type', 6230: 'typed', 6231: 'typing', 6232: 'tyson/secretariat', 6233: 'u', 6234: 'u2:', 6235: 'ugh', 6236: 'uglier', 6237: 'ugliest', 6238: 'ugliness', 6239: 'ugly', 6240: 'uh', 6241: 'uh-huh', 6242: 'uh-oh', 6243: 'uhhhh', 6244: 'ultimate', 6245: 'um', 6246: 'umm', 6247: 'ummmmmmmmm', 6248: 'un-sults', 6249: 'unable', 6250: 'unattended', 6251: 'unattractive', 6252: 'unavailable', 6253: 'unbelievable', 6254: 'unbelievably', 6255: 'uncle', 6256: 'uncomfortable', 6257: 'uncreeped-out', 6258: 'undated', 6259: 'under', 6260: 'underbridge', 6261: 'undermine', 6262: 'underpants', 6263: 'understand', 6264: 'understanding', 6265: 'understood', 6266: 'understood:', 6267: 'underwear', 6268: 'undies', 6269: 'unearth', 6270: 'uneasy', 6271: 'unexplained', 6272: 'unfair', 6273: 'unfamiliar', 6274: 'unforgettable', 6275: 'unfortunately', 6276: 'unfresh', 6277: 'ungrateful', 6278: 'unhappy', 6279: 'unhook', 6280: 'uniforms', 6281: 'uninhibited', 6282: 'unintelligent', 6283: 'unison', 6284: 'united', 6285: 'universe', 6286: 'unjustly', 6287: 'unkempt', 6288: 'unless', 6289: 'unlike', 6290: 'unlocked', 6291: 'unlucky', 6292: 'unrelated', 6293: 'unsafe', 6294: 'unsanitary', 6295: 'unsourced', 6296: 'until', 6297: 'unusual', 6298: 'unusually', 6299: 'up', 6300: 'up-bup-bup', 6301: 'upbeat', 6302: 'updated', 6303: 'upgrade', 6304: 'upn', 6305: 'upon', 6306: 'upset', 6307: 'upsetting', 6308: 'ura', 6309: 'urban', 6310: 'urge', 6311: 'urinal', 6312: 'urine', 6313: 'us', 6314: 'use', 6315: 'used', 6316: 'uses', 6317: "usin'", 6318: 'using', 6319: 'usual', 6320: 'usually', 6321: 'utensils', 6322: 'utility', 6323: 'vacation', 6324: 'vacations', 6325: 'vacuum', 6326: "valentine's", 6327: 'valley', 6328: 'valuable', 6329: 'value', 6330: 'vampire', 6331: 'vampires', 6332: 'van', 6333: 'vance', 6334: 'vanities', 6335: 'various', 6336: 'vegas', 6337: 'vehicle', 6338: 'vengeance', 6339: 'vengeful', 6340: 'venom', 6341: 'ventriloquism', 6342: 'venture', 6343: 'verdict', 6344: 'vermont', 6345: 'versus', 6346: 'verticality', 6347: 'very', 6348: 'vestigial', 6349: 'veteran', 6350: 'veux', 6351: 'vicious', 6352: 'victim', 6353: 'victorious', 6354: 'victory', 6355: 'video', 6356: 'videotaped', 6357: 'view', 6358: 'vigilante', 6359: 'village', 6360: 'villanova', 6361: 'vin', 6362: 'vincent', 6363: 'violations', 6364: 'violin', 6365: 'virile', 6366: 'virility', 6367: 'virtual', 6368: 'visas', 6369: 'viva', 6370: 'vodka', 6371: 'voice', 6372: 'voice:', 6373: 'voice_on_transmitter:', 6374: 'voicemail', 6375: 'volunteer', 6376: 'vomit', 6377: 'voodoo', 6378: 'vote', 6379: 'voted', 6380: 'voters', 6381: 'voyager', 6382: 'vulgar', 6383: 'vulnerable', 6384: 'w', 6385: 'w-a-3-q-i-zed', 6386: 'wa', 6387: 'wacky', 6388: 'wad', 6389: 'wade_boggs:', 6390: 'wage', 6391: 'wagering', 6392: 'waist', 6393: 'wait', 6394: "wait'll", 6395: "waitin'", 6396: 'waitress', 6397: 'wake', 6398: 'wakede', 6399: 'waking-up', 6400: 'walk', 6401: 'walked', 6402: 'walking', 6403: 'walks', 6404: 'wall', 6405: 'wallet', 6406: "wallet's", 6407: 'wally', 6408: 'wally:', 6409: 'walther', 6410: 'walther_hotenhoffer:', 6411: 'waltz', 6412: 'wang', 6413: 'wangs', 6414: 'wanna', 6415: 'want', 6416: 'wantcha', 6417: 'wanted', 6418: 'wants', 6419: 'war', 6420: 'warily', 6421: 'warm_female_voice:', 6422: 'warmly', 6423: 'warmth', 6424: 'warn', 6425: 'warned', 6426: 'warning', 6427: 'warranty', 6428: 'warren', 6429: 'wars', 6430: 'was', 6431: 'wash', 6432: 'washed', 6433: 'washer', 6434: "washin'", 6435: 'washouts', 6436: "wasn't", 6437: 'waste', 6438: 'wasted', 6439: 'wasting', 6440: 'watashi', 6441: 'watch', 6442: 'watched', 6443: "watchin'", 6444: 'watching', 6445: 'water', 6446: 'watered', 6447: 'watered-down', 6448: 'waterfront', 6449: 'waters', 6450: 'watt', 6451: 'wave', 6452: 'way', 6453: 'way:', 6454: 'waylon', 6455: 'waylon_smithers:', 6456: 'wayne', 6457: 'wayne:', 6458: 'ways', 6459: 'wazoo', 6460: 'we', 6461: "we'd", 6462: "we'll", 6463: "we're", 6464: "we've", 6465: 'we-we-we', 6466: 'weak', 6467: 'wealthy', 6468: 'weapon', 6469: 'wear', 6470: "wearin'", 6471: 'wearing', 6472: 'wears', 6473: 'weary', 6474: 'weather', 6475: 'website', 6476: 'wedding', 6477: 'wednesday', 6478: 'week', 6479: 'weekend', 6480: 'weekly', 6481: 'weeks', 6482: 'weep', 6483: 'weight', 6484: 'weird', 6485: 'weirded-out', 6486: 'weirder', 6487: 'welcome', 6488: 'well', 6489: 'well-wisher', 6490: 'wells', 6491: 'wenceslas', 6492: 'went', 6493: 'were', 6494: "weren't", 6495: 'west', 6496: 'western', 6497: 'wh', 6498: 'wha', 6499: 'whaaa', 6500: 'whaaaa', 6501: 'whaddaya', 6502: 'whaddya', 6503: 'whale', 6504: 'wham', 6505: 'what', 6506: "what'd", 6507: "what'll", 6508: "what're", 6509: "what's", 6510: "what'sa", 6511: 'what-for', 6512: 'whatcha', 6513: 'whatchacallit', 6514: 'whatchamacallit', 6515: 'whatever', 6516: 'whatsit', 6517: 'whee', 6518: 'wheeeee', 6519: 'wheel', 6520: 'wheels', 6521: 'when', 6522: "when's", 6523: 'when-i-get-a-hold-of-you', 6524: 'whenever', 6525: 'where', 6526: "where'd", 6527: "where's", 6528: 'whether', 6529: 'which', 6530: 'while', 6531: 'whim', 6532: 'whining', 6533: 'whiny', 6534: 'whip', 6535: 'whirlybird', 6536: 'whisper', 6537: 'whispered', 6538: 'whispers', 6539: 'whistles', 6540: 'whistling', 6541: 'white', 6542: 'white_rabbit:', 6543: 'who', 6544: "who'da", 6545: "who'll", 6546: "who's", 6547: 'who-o-oa', 6548: 'whoa', 6549: 'whoa-ho', 6550: 'whoever', 6551: 'whole', 6552: 'wholeheartedly', 6553: 'whoo', 6554: 'whoopi', 6555: 'whoops', 6556: 'whose', 6557: 'whup', 6558: 'why', 6559: 'wide', 6560: 'widow', 6561: 'wiener', 6562: 'wieners', 6563: 'wienerschnitzel', 6564: 'wife', 6565: "wife's", 6566: 'wife-swapping', 6567: 'wiggle', 6568: 'wiggle-frowns', 6569: 'wiggum', 6570: 'wigs', 6571: 'wikipedia', 6572: 'wild', 6573: 'wildest', 6574: 'wildfever', 6575: 'will', 6576: 'william', 6577: 'williams', 6578: 'willing', 6579: 'willy', 6580: 'win', 6581: 'winces', 6582: 'winch', 6583: 'wind', 6584: 'winded', 6585: 'windelle', 6586: 'windex', 6587: 'window', 6588: 'windowshade', 6589: 'windshield', 6590: 'wine', 6591: 'wing', 6592: 'wings', 6593: 'winks', 6594: 'winner', 6595: 'winning', 6596: 'winnings', 6597: "wino's", 6598: 'wins', 6599: 'winston', 6600: 'wipe', 6601: 'wipes', 6602: 'wiping', 6603: 'wire', 6604: 'wisconsin', 6605: 'wise', 6606: 'wish', 6607: 'wish-meat', 6608: 'wishes', 6609: 'wishful', 6610: 'wishing', 6611: 'wistful', 6612: 'witches', 6613: 'with', 6614: 'without', 6615: 'without:', 6616: 'wittgenstein', 6617: 'witty', 6618: 'wizard', 6619: 'wobble', 6620: 'wobbly', 6621: 'woe:', 6622: 'wok', 6623: 'wolfcastle', 6624: 'wolfe', 6625: 'wolverines', 6626: 'wolveriskey', 6627: 'woman', 6628: 'woman:', 6629: 'woman_bystander:', 6630: 'womb', 6631: 'women', 6632: 'won', 6633: "won't", 6634: 'wonder', 6635: 'wondered', 6636: 'wonderful', 6637: "wonderin'", 6638: 'wondering', 6639: 'woo', 6640: 'woo-hoo', 6641: 'wood', 6642: 'woodchucks', 6643: 'wooden', 6644: 'wooooo', 6645: 'woooooo', 6646: 'woozy', 6647: 'word', 6648: 'wordloaf', 6649: 'words', 6650: 'wore', 6651: 'work', 6652: 'worked', 6653: 'workers', 6654: "workin'", 6655: 'working', 6656: 'works', 6657: 'world', 6658: "world's", 6659: 'world-class', 6660: 'worldly', 6661: 'worldview', 6662: 'worried', 6663: 'worry', 6664: 'worse', 6665: 'worst', 6666: 'worth', 6667: 'worthless', 6668: 'would', 6669: 'woulda', 6670: "wouldn't", 6671: "wouldn't-a", 6672: 'wound', 6673: 'wounds', 6674: 'wow', 6675: 'wowww', 6676: 'wrap', 6677: 'wrapped', 6678: 'wraps', 6679: 'wreck', 6680: 'wrecking', 6681: 'wrestle', 6682: 'wrestling', 6683: 'write', 6684: 'writer:', 6685: 'writers', 6686: "writin'", 6687: 'writing', 6688: 'written', 6689: 'wrong', 6690: 'wrote', 6691: 'wudgy', 6692: 'wuss', 6693: 'wussy', 6694: 'x', 6695: 'x-men', 6696: 'xanders', 6697: 'xx', 6698: 'y', 6699: "y'know", 6700: "y'money's", 6701: "y'see", 6702: 'y-you', 6703: 'ya', 6704: "ya'", 6705: 'yak', 6706: 'yammering', 6707: 'yap', 6708: 'yard', 6709: 'yards', 6710: 'yawns', 6711: 'ye', 6712: 'yea', 6713: 'yeah', 6714: 'year', 6715: "year's", 6716: 'years', 6717: 'yee-ha', 6718: 'yee-haw', 6719: 'yell', 6720: 'yelling', 6721: 'yello', 6722: 'yellow', 6723: 'yellow-belly', 6724: 'yells', 6725: 'yelp', 6726: 'yep', 6727: 'yes', 6728: 'yesterday', 6729: "yesterday's", 6730: 'yet', 6731: 'yew', 6732: "yieldin'", 6733: 'yo', 6734: 'yogurt', 6735: 'yoink', 6736: 'yoo', 6737: 'you', 6738: "you'd", 6739: "you'll", 6740: "you're", 6741: "you've", 6742: 'you-need-man', 6743: 'young', 6744: 'young_barfly:', 6745: 'young_homer:', 6746: 'young_marge:', 6747: 'young_moe:', 6748: 'youngsters', 6749: 'your', 6750: 'yours', 6751: 'yourse', 6752: 'yourself', 6753: 'yourselves', 6754: 'youse', 6755: 'youth', 6756: 'youuu', 6757: 'yuh-huh', 6758: 'yup', 6759: 'zack', 6760: 'ze-ro', 6761: 'zeal', 6762: 'zero', 6763: 'ziff', 6764: 'ziffcorp', 6765: 'zinged', 6766: 'zone', 6767: 'zoomed', 6768: '||comma||', 6769: '||dash||', 6770: '||dot||', 6771: '||exclamation||', 6772: '||leftparenthesis||', 6773: '||questionmark||', 6774: '||quotationmark||', 6775: '||return||', 6776: '||rightparenthesis||', 6777: '||semicolon||', 6778: 'à'}
[6775]
6775
||return||
homer_simpson: uh, sure.
moe_szyslak: great. all you gotta do is fight drederick tatum. it's this saturday. here's your parking pass.
homer_simpson:(impressed) ooh," general!"(beat) who's drederick tatum, anyway? is he another hobo?
moe_szyslak:(evasive) uh, you know what? i'm gonna can love you help you,(beat) yeah. / hi homer.
moe_szyslak: hey, hey, you wanna try my new vance connor-politan? like vance, it is smooth, cool and oh-so-sophisticated.
homer_simpson: i'll just stick with my beer.
lenny_leonard: homer, why are you so down on vance connor? he was an executive assistant who was me the other two heads." work comes a(air quotes)" good book," gay guide to tune.
homer_simpson:(keeping dignity) i sure know...
c. _montgomery_burns: what good is money if you can't inspire terror in your fellow man?(determined) i've got to get my plant back!


The TV Script is Nonsensical

It's ok if the TV script doesn't make any sense. We trained on less than a megabyte of text. In order to get good results, you'll have to use a smaller vocabulary or get more data. Luckly there's more data! As we mentioned in the begging of this project, this is a subset of another dataset. We didn't have you train on all the data, because that would take too long. However, you are free to train your neural network on all the data. After you complete the project, of course.

Submitting This Project

When submitting this project, make sure to run all the cells before saving the notebook. Save the notebook file as "dlnd_tv_script_generation.ipynb" and save it as a HTML file under "File" -> "Download as". Include the "helper.py" and "problem_unittests.py" files in your submission.